InterviewSolution
Saved Bookmarks
| 1. |
Which of the following clauses is used to display information that match a given pattern?(a) LIKE(b) WHERE(c) IS(d) SAME |
|
Answer» The correct option is (a) LIKE For explanation I would say: 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. |
|