Which character is said to be WildCard Character in SQL ?

 Posted by Chvrsri on 7/5/2011 | Category: Sql Server Interview questions | Views: 4795 | Points: 40
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 

Comments or Responses

Login to post response