一、查询某个数据库中所有数据表的名称
- Select TABLE_NAME FROM DBTest02.INFORMATION_SCHEMA.TABLES Where TABLE_TYPE='BASE TABLE'
二、查询某个数据表中所有字段的信息
2.1 查询某个表字段的所有信息
- use DBTest02
- select * from syscolumns where id=object_id('StuCourceInfo');
2.2 查询某个表的字段名
- use DBTest02
- select name from syscolumns where id=object_id('StuCourceInfo');
2.3 查询某个表字段的个数
- use DBTest02
- select count(*) from syscolumns where id=object_id('StuCourceInfo');
参考文献:
http://www.2cto.com/database/201403/283781.html
http://www.dedecms.com/knowledge/data-base/sql-server/2012/0821/11037.html