What operator performs pattern matching?

Showing Answers 1 - 19 of 19 Answers

venkat

  • Oct 17th, 2005
 

LIKE

  Was this answer useful?  Yes

KODANDARAO

  • Nov 3rd, 2005
 

LIKE

  Was this answer useful?  Yes

Prathiba

  • Nov 7th, 2005
 

LIKE

  Was this answer useful?  Yes

CK Raju

  • Dec 7th, 2005
 

like %,in,instr

  Was this answer useful?  Yes

madhu

  • Feb 15th, 2006
 

pattern matching operator is LIKE and it has to used with two attributes

1. % and

2. _ ( underscore )

% means matches zero or more characters and under score means mathing exactly one character

  Was this answer useful?  Yes

samrat bose

  • Mar 11th, 2006
 

Like operator.

Where we can use %,?.

eg: select ename from emp where ename like 'A%';

It will display all ename starting with 'A'.

  Was this answer useful?  Yes

Dipti

  • Mar 31st, 2006
 

LIKE

  Was this answer useful?  Yes

srihari

  • Feb 14th, 2007
 

LIKE operator

  Was this answer useful?  Yes

saurabh

  • Sep 5th, 2011
 

underscore operator (_) for single character matching n wildcard (%) for any length string matching...

example a column having abhi,abhaaa, bhaaa,bmddd,cmmm;and i want all those name that start with a then use like 'a%';

  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