摘要:
如我想查看用户M下的所有表的总记录数: SELECT SUM(num_rows) FROM SYS.ALL_TABLES T WHERE T.OWNER = 'M';1但是查出的不是实时记录数。 如果想查看用户M下所有表的字段总数: SELECT * FROM SYS.dba_TAB_columns 阅读全文
posted @ 2018-11-07 18:02
枫林阁小二
阅读(2091)
评论(0)
推荐(0)
摘要:
http://blog.sina.com.cn/s/blog_61c006ea0100m2uo.html 1、create table testd(id int,name char(5)); beginfor i in 1..1000000 loop insert into testd values 阅读全文
posted @ 2018-11-07 18:00
枫林阁小二
阅读(1691)
评论(0)
推荐(0)