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
Post a Comment