John wants to retrieve all records from students table who live in any city beginning with WAS . Which of the following statement is to be executed by himA. Select * from students where city = 'WAS'B. Select * from students where city = 'WAS%'C. Select * from students where city in 'WAS'D. Select * from students where city like 'WAS%'
-
Interview Candidate
- Jun 19th, 2005
- 4
- 1806
Showing Answers 1 - 4 of 4 Answers
John wants to retrieve all records from students table who live in any city beginning with WAS . Which of the following statement is to be executed by himA. Select * from students where city = 'WAS'B. Select * from students where city = 'WAS%'C. Select * from students where city in 'WAS'D. Select * from students where city like 'WAS%'