InterviewSolution
Saved Bookmarks
| 1. |
Which clause is used to display information that matches a given pattern?(a) WHERE(b) IS(c) SAME(d) LIKE |
|
Answer» Right choice is (d) LIKE Easiest explanation: The ‘LIKE’ clause filters information that match a given pattern. ‘WHERE’ clause selects information that is specified by a condition. ‘IS’ is used to match the exact condition specified. |
|