sql语句实现表的字段名查询

sql语句实现表的字段名查询,第1张

下面为您介绍的是查询表的字段名的sql语句写法 sql语句可以实现许多的功能 希望可以您在学习sql语句使用方面获得启示

select name from syscolumns where id = (select id from sysobjects where type = u and name = 相应表名 )   或者   select name from syscolumns where id = object_id( 相应表名 )  用以上sql语句输入相应表名就可以查到表的字段名 对应好数据库 查询是否存在该表语句

而判断表名在数据库中是否存在的方法是

if not object_id( 相应表名 ) is null   print 存在   这次查询表中的字段名的目标是在写程序的时候需要写一点sql语句 但是表的字段太多了 如果一个一个去复制的话太慢了 而且有可能会复制漏了某个字段 所以利用自己数据库的知识 写了个sql语句直接生成字段名字符串 例如下面我要写一个select语句 需要生成表所有的字段

declare @s varchar( )   select @s = isnull(@s+ ) + [name] from syscolumns where id = object_id( 相应表名 )   select @s  获取字段名已经字段类型 类型长度

lishixinzhi/Article/program/MySQL/201311/29550

怎样查询数据库中一张表中所有的字段名称

-表的字段名称

select name from syscolumns where id=object_id( '表名 ')

--表的字段数

select count(name) from syscolumns where id=object_id( '表名 ')

最好改成:object_id(N '表名 ')

这样只是规范一些,一般不会出错

select name from syscolumns where id=object_id(N '表名 ')--列名

select name from sysobjects where xtype= 'U '--表名

select name from sysobjects where xtype= 'P '--存储过程


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9647538.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-30
下一篇 2023-04-30

发表评论

登录后才能评论

评论列表(0条)

保存