Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. SELECT * FROM tableName WHERE colName = 'test
  2. other chars \ '' " _ % àèìòù'
  3.  
  4. //Sudo for Understanding
  5. SELECT * FROM tableName WHERE colName like concat('%test%', '%other%', '%chars%')
  6.  
  7. SELECT * FROM tableName WHERE colName like 'test%'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement