本文介绍了如何删除在1月10日之前创建的用户名下的所有表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要删除在2010年1月1日之前创建的所有表。我在stackoverflow中遇到了一些示例,但没有一个符合我的需要。与主键没有冲突,这是一个好点。它必须在pl / sql中,但sql是可以的,我可以搞清楚。
我尝试过:
从用户中删除user_table
从用户创建的drop user_table< '01 -jan-2010';
解决方案
I need to drop all table that were created before jan 1st 2010. I have came across some example here at stackoverflow but none meets my need.There is no conflict with primary key which is a good point. It has to be in pl/sql but sql is ok, I can figure it out.
What I have tried:
drop user_table from user
drop user_table from user created <'01-jan-2010';
解决方案
这篇关于如何删除在1月10日之前创建的用户名下的所有表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!