sqL语句查找不知道表结构
发布网友
发布时间:2022-04-26 16:14
我来回答
共3个回答
热心网友
时间:2023-04-22 15:40
使用数据库的存储过程直接查看就可以了,语法
exec sp_help 表名或不写表名
热心网友
时间:2023-04-22 15:40
例如查询列名包含'abc'的表
select distinct tablename=object_name(id) from syscolumns
where name like '%abc%'
热心网友
时间:2023-04-22 15:40
1.找到你要查看的表
select * from dbo.sysobjects where type='U'
2.select * from dbo.syscolumns sc,dbo.sysobjects so where
sc.id=so.id and so.name='你要查看的表'