InterviewSolution
Saved Bookmarks
| 1. |
How do you search for a value in a database table when you don’t have the exact value to search for? |
|
Answer» In such cases, the LIKE condition operator is used to select rows that match a character pattern. This is also called ‘wildcard’ search. |
|