1.oracle查询数据库中表的个数:
select count(*) from user_tables
这个操作的前提是,登录成功
2.mysql查询数据库中表的个数:
SELECT COUNT(*) TABLES, table_schema FROM information_schema.TABLES WHERE table_schema = ‘数据库‘ GROUP BY table_schema;
把数据库这三个字修改成自己对应的数据库的名字
3.sqlserver中查询某一个数据中表的个数:
select count(1) from sysobjects where xtype=‘U‘
时间: 2024-10-14 21:45:36