sql查询将字段值转换成汉字
Posted 疯狂小公举
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql查询将字段值转换成汉字相关的知识,希望对你有一定的参考价值。
sql查询将字段值转换成汉字
SELECT
c.name columnName,
CONVERT(varchar(200), ex.value) comments,
t.name dataType,
c.max_length dataLength,
(case c.is_nullable when '1' then 'YES'
WHEN '0' then 'NO' ELSE '' END)nullable
FROM
sys.columns c
LEFT OUTER JOIN
sys.extended_properties ex
ON
ex.major_id = c.object_id
AND ex.minor_id = c.column_id
AND ex.name = 'MS_Description'
left outer join
systypes t
on c.system_type_id=t.xtype
WHERE
OBJECTPROPERTY(c.object_id, 'IsMsShipped')=0
AND OBJECT_NAME(c.object_id) ='tabuser'
以上是关于sql查询将字段值转换成汉字的主要内容,如果未能解决你的问题,请参考以下文章