I need something like this:
select (len(someLongTextColumn)=0) as isEmpty;
The above doesn\'t work,
any alternatives?
SQL Server:
SELECT CONVERT(BIT, 1) -- true SELECT CONVERT(BIT, 0) -- false