InterviewSolution
Saved Bookmarks
| 1. |
What Is The Wildcard Character In Sql? |
|
Answer» Let’s say you want to QUERY DATABASE with LIKE for all employees whose NAME STARTS with La. The wildcard character is %, the proper query with LIKE would involve ‘La%’. Let’s say you want to query database with LIKE for all employees whose name starts with La. The wildcard character is %, the proper query with LIKE would involve ‘La%’. |
|