Saved Bookmarks
| 1. |
Differentiate LIKE ‘a%’ and LiKE ‘a_’ |
|
Answer» %, it replaces a string but _ replaces only one character at a time.LIKE ‘a%’ retrieve all strings of any length that start with letter ‘a’ while LIKE ‘a_’ retrieve all two letter strings that start with letter ‘a’. |
|