Suppose there are 4 fields in a table named WORKER Id first-04948
Suppose there are 4 fields in a table named WORKER (Id, first_name, last_name, joining_year). Which of thefollowing gives all the information of the workers who have joined after 1965?
This multiple choice question (MCQ) is related to the book/course vu cs403 Database Management Systems. It can also be found in vu cs403 Final Term - Quiz No.1.
Suppose there are 4 fields in a table named WORKER (Id, first_name, last_name, joining_year). Which of thefollowing gives all the information of the workers who have joined after 1965?
SELECT * FROM WORKER WHERE joining_Year>1965;
SELECT * FROM WORKER WHERE joining_Year>'1965';
SELECT * FROM WORKER AND joining_Year>'1965';
SELECT * WHERE joining_Year>1965;