SQL筛选空值
select * from Translation where TransContent is not null and CONVERT(NVARCHAR(4000),TransContent)!='' and Member='wang_su_fei'
select TransContent from Translation where TransContent is not null and cast(TransContent as NVARCHAR)<>''
select * from Translation where TransContent is not null and CONVERT(NVARCHAR(4000),TransContent)!='' and Member='wang_su_fei'
select TransContent from Translation where TransContent is not null and cast(TransContent as NVARCHAR)<>''