They are the chararcters which provides a easiy way to search any pattern or string in the specified column. Wildcards can be use within two functions only, they are
The Like is already discussed in the previous page or you can click on this link
It performs some category , whose description is given below in the below table
SELECT * FROM tablename WHERE Clause RLIKE 'type_define';
The '^' defines the starting of the string followed by the character ' s ' define and display all the result.
SELECT * FROM studinfo WHERE lname RLIKE '^s' ;
The '$' defines the ending of the string followed by the character ' a ' define and display all the result.
SELECT * FROM studinfo WHERE lname RLIKE 'a$' ;
The '|' defines the OR type in the string and display all the result.
SELECT * FROM studinfo WHERE lname RLIKE 'sharma|saxena' ;
Others
Languages
Frameworks
Web / Design
Mobile Technology
Sql & Technology
R4R