idea怎么導出建表語句?
如何導出數據庫中的所有表的建表sql語句 用sql獲取數據庫中所有的表名的方法: 1、oracle下:select table_name from all_tables; 2、MySQL下:select table_name from information_schema.tables where table_schema='csdb' and table_type='base table'; 3、sql server下:select name from sys.tables go