DB2 删除某用户下的所有表

DB2数据库删除某schema下的 所有表

select  'DROP TABLE ' || tabname ||' ;'  from syscat.tables where tabschema='YOURSCHEMA'


你可能感兴趣的:(DB2 删除某用户下的所有表)