sql server2005 怎么显示表的字段数据类型和长度
sqlserver吧
全部回复
仅看楼主
level 1
nerv_dream 楼主
student 表
--显示表的字段数据类型和长度
select column_name,data_type from information_schema.columns
where table_name = 'student'
结果
stuId char
stuNamenchar
class char
自己在网上就找到能够显示数据类型的,求个能够显示长度的语句
2015年09月04日 12点09分 1
level 10
求这个软件啊!64位的有吗?
2015年09月05日 12点09分 2
我机器是32位的。。。
2015年09月05日 16点09分
1