• 2022-01-26
oracle怎样删除所有表

在oracle中,可以利用“select ‘Drop table ‘||table_name||‘;‘ from all_tables where owner=‘要删除所有表的用户名‘;”语句删除指定......

11