Introduction to SQL
Which of the following is illegal?

SELECT SYSDATE - (SYSDATE - 2) FROM DUAL;
SELECT SYSDATE - (SYSDATE + 2) FROM DUAL;
None of these
SELECT SYSDATE - SYSDATE FROM DUAL;

ANSWER DOWNLOAD EXAMIANS APP

Introduction to SQL
To define what columns should be displayed in an SQL SELECT statement:

use USING to name the source table(s) and list the columns to be shown after WHER
use USING to name the source table(s) and list the columns to be shown after SELECT.
use FROM to name the source table(s) and list the columns to be shown after SELECT.
use SELECT to name the source table(s) and list the columns to be shown after USING.

ANSWER DOWNLOAD EXAMIANS APP