Is it possible to have a statement like
SELECT \"Hello world\" WHERE 1 = 1
in SQL?
The main thing I want to know, is can I SELECT f
Try this.
Single:
SELECT * FROM (VALUES ('Hello world')) t1 (col1) WHERE 1 = 1
Multi:
SELECT * FROM (VALUES ('Hello world'),('Hello world'),('Hello world')) t1 (col1) WHERE 1 = 1
more detail here : http://modern-sql.com/use-case/select-without-from