Guest User

Untitled

a guest
Mar 18th, 2018
97
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 subjects WHERE Course LIKE ('%'+ ? + '%')"
  2.  
  3. "SELECT * FROM subjects WHERE Course LIKE CONCAT('%', ? , '%');"
  4.  
  5. "SELECT * FROM subjects WHERE Course LIKE '%'" + SomeText+ "%';"
  6.  
  7. "SELECT * FROM subjects WHERE Course LIKE '%" & SomeText & "%'"
Add Comment
Please, Sign In to add comment