1.

Write SQL statement that gives the same output as the following SQL statement but uses 'IN' keyword. SELECT NAME FROM STUDENT WHERE STATE = 'VA';

Answer»

SELECT NAME FROM STUDENT WHERE STATE IN ("VA");



Discussion

No Comment Found

Related InterviewSolutions