• 2020-09-30
oracle怎么删除用户下所有表?

方法:1、使用“drop user user_name cascade;”语句;2、使用“select ‘drop table ‘||table_name||‘;‘ from cat where ta......

11