How To Use LIKE Conditions?
Submitted by: AdministratorA LIKE condition is also called pattern patch. There are 3 main rules on using LIKE condition:
* '_' is used in the pattern to match any one character.
* '%' is used in the pattern to match any zero or more characters.
* ESCAPE clause is used to provide the escape character in the pattern.
The following tutorial exercise provides you some good pattern matching examples:
SELECT 'GlobalGuideLine.com' LIKE '%center%' FROM DUAL;
1
SELECT 'GlobalGuideLine.com' LIKE '%CENTER%' FROM DUAL;
1
-- Case insensitive by default
SELECT 'GlobalGuideLine.com' LIKE '%CENTER_com' FROM DUAL;
1
Submitted by: Administrator
* '_' is used in the pattern to match any one character.
* '%' is used in the pattern to match any zero or more characters.
* ESCAPE clause is used to provide the escape character in the pattern.
The following tutorial exercise provides you some good pattern matching examples:
SELECT 'GlobalGuideLine.com' LIKE '%center%' FROM DUAL;
1
SELECT 'GlobalGuideLine.com' LIKE '%CENTER%' FROM DUAL;
1
-- Case insensitive by default
SELECT 'GlobalGuideLine.com' LIKE '%CENTER_com' FROM DUAL;
1
Submitted by: Administrator
Read Online MySQL Programming Job Interview Questions And Answers
Top MySQL Programming Questions
| ☺ | How To Use Regular Expression in Pattern Match Conditions? |
| ☺ | What Is TIMESTAMP in MySQL? |
| ☺ | How To Use CASE Expression? |
| ☺ | How To Decrement Dates by 1 in MySQL? |
| ☺ | How To Delete an Existing Column in a Table? |
Top Databases Programming Categories
| ☺ | RDBMS Interview Questions. |
| ☺ | SQL Interview Questions. |
| ☺ | SSRS Interview Questions. |
| ☺ | Sybase Interview Questions. |
| ☺ | Database Administrator (DBA) Interview Questions. |
