删除数据库中所有的表的sql

select 'drop table '||table_name||';' 
from cat 
where table_type='TABLE'

猜你喜欢

转载自blog.csdn.net/qq_28917403/article/details/80162135