select from empty table sql code example
Example: sql empty select
-- NOTE: this is for SQL-Oracle specifically
-- syntax:
SELECT <testing_result>
FROM DUAL;
-- example:
SELECT 1+2, 2+3, 3+4
FROM DUAL;
-- OUTPUT: 3,5,7
-- NOTE: this is for SQL-Oracle specifically
-- syntax:
SELECT <testing_result>
FROM DUAL;
-- example:
SELECT 1+2, 2+3, 3+4
FROM DUAL;
-- OUTPUT: 3,5,7