In most SQL products, I can select from no table or from a dummy table like this:
-- Oracle
SELECT 1 FROM DUAL
-- Many other SQL products (including Ingres)
SELECT 1
Sometimes, I want to add a condition to the above statement, in order to retrieve 0 or 1 record, depending on the condition
-- Oracle
SELECT 1 FROM DUAL WHERE 1 = 0
-- Many other SQL products (but not Ingres)
SELECT 1 WHERE 1 = 0
But the above does not work for Ingres 10.0. How can I do it?
I've not used Ingres but I assume from your question that a
FROM
is mandatory if there is aWHERE
? In that case how aboutOr
(The last one will always return a row but allow you to check a condition)