美文网首页
Sql Server查看字段 结构

Sql Server查看字段 结构

作者: hanscang | 来源:发表于2020-05-14 10:42 被阅读0次
SELECT
a.name,b.name,c.DATA_TYPE,b.max_length 
FROM sys.tables a 
JOIN sys.columns b on b.object_id = a.object_id
JOIN INFORMATION_SCHEMA.COLUMNS c on b.name=c.COLUMN_NAME and a.name=c.TABLE_NAME
WHERE a.name='OC_ChargeOrder_WideTable_202001'
and b.name = 'Code'

百度所得,地址遗失,记录一下

相关文章

网友评论

      本文标题:Sql Server查看字段 结构

      本文链接:https://www.haomeiwen.com/subject/jogznhtx.html