Which two statements are true about views?
Examine this statement:
SELECT 1 AS id, ' John' AS first name
FROM DUAL
UNION
SELECT 1 , ' John' AS name
FROM DUAL
ORDER BY 1;
What is returned upon execution?
Which two statements are true regarding the UNION ALL operators?
Examine these statements which execute successfully:
Both statements display departments ordered by their average salaries.
Which two are true?