上一页 1 ··· 6 7 8 9 10
摘要: #use information_schema;#select concat('drop table ',table_name,';') from tables where TABLE_SCHEMA = 'nxpt';拼接删除SQL #select concat('TRUNCATE table ', 阅读全文
posted @ 2017-02-27 13:29 已老 阅读(10312) 评论(0) 推荐(0)
摘要: mysql:如何将百万级别的数据从oracle转移到mysql中 http://blog.csdn.net/hwhua1986/article/details/53257427 oracle到mysql的迁移步骤及各种注意事项 http://www.2cto.com/database/201305/ 阅读全文
posted @ 2017-02-27 11:55 已老 阅读(589) 评论(1) 推荐(0)
摘要: oracle 查每张表有多少条记录 SELECT table_name,num_rows FROM user_tables order by num_rows desc; 阅读全文
posted @ 2017-02-27 11:39 已老 阅读(5339) 评论(0) 推荐(1)
摘要: mysql 查看数据库中所有表的记录数 use information_schema; select table_name,table_rows from tables where TABLE_SCHEMA = 'testdb' order by table_rows desc; 阅读全文
posted @ 2017-02-27 11:22 已老 阅读(19513) 评论(0) 推荐(1)
上一页 1 ··· 6 7 8 9 10