Guest_imported
New member
- Jan 1, 1970
- 0
When I use the LIKE operator to find a String. How can I solve with the % and _ character.
If I want to find a record which contains a readly character '%' and '_'
For examples : I want to search in table A where the field name must include a string ' aa%aa '.
How to solve if I use Like operator
Select * from A where name LIKE ' aa%aa '
and may be the result is false.
If I want to find a record which contains a readly character '%' and '_'
For examples : I want to search in table A where the field name must include a string ' aa%aa '.
How to solve if I use Like operator
Select * from A where name LIKE ' aa%aa '
and may be the result is false.