SQL Server 输出所有表结构
摘要:
1 SELECT 2 表名 = case when a.colorder=1 then d.name else '' end, 3 表说明 = case when a.colorder=1 then isnull(f.value,'') else '' end, 4 字段中文名称 = isnull(g.[value],''), 5 字段英文名称 = a.name, 6... 阅读全文
posted @ 2017-07-10 13:22 Qcj 阅读(436) 评论(0) 推荐(0) 编辑