一.mysql相关

1.查询所有的数据库

SHOW DATABASES;

2.列出当前数据库的所有表

show tables;

3.查询指定数据库中的所有表信息

select * from information_schema.tables where table_schema = 'ProductDB' order by table_name;

4.查询指定表的字段总数

select count(*) from information_schema.columns where table_schema = 'ProductDB' and table_name='Products_Core';

二.sqlserver相关

1.查询所有的数据库

SELECT * FROM Master..SysDatabases ORDER BY Name;

2.列出当前数据库的所有表

SELECT * from sysobjects where xtype = 'U' ORDER BY name;

3.列出指定表的字段总数

select count(*) from syscolumns where id=object_id('Products_Core');

 

posted on 2013-05-03 16:36  AdaYin  阅读(111)  评论(0编辑  收藏  举报