Answer: Let assume we want a query which returns all the employee names starting with Ra then in SQL we generally use
Select FirstName from Employee where FirstName LIKE 'Ra%'
here that % is said to be the Wild card character.
Asked In: Many Interviews |
Alert Moderator