Saved Bookmarks
| 1. |
Consider the Table EMPLOYEE given below:NameZoneAgeDeptHaritWest2810KritikaCentre3010NaveenEast4020UdayNorth3830NupurEast2420MokshSouth2810ShellyNorth2430Choose the correct query/queries that will give the following output:NameHaritKritikaMoksh1. Select Name from EMPLOYEE where DEPT in (10); 2. Select Name from EMPLOYEE where AGE between 25 and 30; 3. Select Name from EMPLOYEE where NAME like “i%”; 4. Select Name from EMPLOYEE where ZONE in (“West”, “Centre”, ”South”);Choose the correct option a. Only (i) b. Both (i) and (ii) c. Both (ii) and (iv) d. All (i), (ii) and (iv) |
|
Answer» Correct option: d. All (i), (ii) and (iv) |
|