标签:
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‘
mysql、oracle、sqlserver查询某数据库中对应的表的个数
标签:
原文地址:http://www.cnblogs.com/sdfiggtx/p/4872101.html