分类目录

链接

2024 年 5 月
 12345
6789101112
13141516171819
20212223242526
2728293031  

近期文章

热门标签

新人福利,免费薅羊毛

SQL获取某一个表的所有字段

获取某一个表的所有字段 select name from syscolumns where id=object_id('表名')   select name from syscolumns where id in (select id from sysobjects where type = 'u' and name = '表名') 两种方式的效果相同

SQL Server 暂无评论 阅读(2,670)