NOTNULL in Postgres
SoftwareDid you know you could do this? It was news to me!
-- Usually written as:
SELECT * FROM tablesalt WHERE greekcolumn IS NOT NULL;
-- But you can also:
SELECT * FROM tablesalt WHERE greekcolumn NOTNULL;
Thanks to Kaarel Moppell for his excellent page of tips.