Question
Computer Science Question on Query using SQL
Mohan wants to display all the attributes and all the tupIes of the table 'Teacher', help him to choose the correct SQL statement :
(A) Select % from teacher ;
(B) Select from teacher ;
(C) Select all from teacher ;
(D) Select * from teacher ;
Choose the correct answer from the options given below :
A
(D) only
B
(A) and (B) only
C
(B), (C) and (D) only
D
(A), (B) and (D) only
Answer
(D) only
Explanation
Solution
The correct option is (A) : (D) only