MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following SQL query to retrieve ecode of employees from EMPLOYEE table, whose address contains 'INDIA':SELECT ecodeFROM EMPLOYEEWHERE _________;Which of the following is most suitable to complete the query? |
| A. | address LIKE '_INDIA_' |
| B. | address = %INDIA% |
| C. | address AS '%INDIA_' |
| D. | address LIKE '%INDIA%' |
| Answer» E. | |