What operator would you use to allow wild card characters in a query?

Questions by jiggley67

Showing Answers 1 - 9 of 9 Answers

r.jain

  • Nov 20th, 2008
 

Wild card character can be used in query with Matchs pattern and Different from pattern operator.

  Was this answer useful?  Yes

lionskashif

  • Feb 17th, 2011
 

hi,


like operator will help you to allow wild card character in a query
for example: you want to find a name "Muhammad kashif" in the name column.
but you dont know "Muhammad" Start by "Mo" or "Mu" So, you use wild card
such as you write in query 
where name like "M_hammad" ("_" for find the single character)
and 
where name like "M%" ("%" First char is M rest is whatever)
these two wild card characters we use in query.
hope it help........... goog luck

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions