SQl查询数据库表名、表的列名
--读取库中的所有表名
select name from sysobjects where xtype='u' SELECT * FROM sys.all_objects as a where a.type = 'U'
--读取指定表的所有列名
select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='表名') select * from sys.all_columns as a where a.object_id = OBJECT_ID('tableName')
获取数据库表名和字段
sqlserver中各个系统表的作用
syscharsets
sysconfigures
syscurconfigs
sysdatabases
syslanguages
syslogins
sysoledbusers
sysprocesses
sysremotelogins主数据库
syscolumns
sysconstrains
sysfilegroups
sysfiles
sysforeignkeys 每个数据库
sysindexs
sysmenbers
sysobjects
syspermissions 每个数据库
systypes
sysusers
//
用什么方法可以得到一个表中所有的列名。SQl语句。
select