I need to get a boolean field in a view from a string field in the table. The boolean field should be True
if the string is filled:
SELECT (MasterId IS NOT NULL) AS HasMaster FROM entries
However, this causes the error:
incorrect syntax near the keyword 'IS'
Why is that and how to fix?