sql - Get the non empty data from a sql_varient column -


i have sql table sql_varient column. want query table records has value. used following query

select * table sql_varient_column not null 

but return data has no data also. how can achieve

to row column sql_varient_column not null , not empty:

select * table nullif(sql_varient_column, '') not null 

Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -