发布网友 发布时间:2022-04-20 15:49
共3个回答
热心网友 时间:2022-04-07 21:20
SQL : select * from information_schema.tables ORACLE: select table_name from user_tables ACCESS: select name from MSysObjects where type=1 and flags=0希望采纳谢谢~!热心网友 时间:2022-04-07 22:38
SELECT * FROM sysobjects s WHERE s.xtype='U'热心网友 时间:2022-04-08 00:13
如果是mysql 就用 use databasename;show tables;如果是sqlserver 就用 select * from sysobjects where xtype='U'如果是oracle 就用 select * from tabs