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