Guest User

Untitled

a guest
May 20th, 2018
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. SELECT * FROM myTable WHERE myField = 'sOmeVal'
  2.  
  3. SELECT * FROM myTable WHERE myField = 'sOmeVal' COLLATE SQL_Latin1_General_CP1_CI_AS
  4.  
  5. SELECT balance FROM people WHERE email = 'billg@microsoft.com'
  6. COLLATE SQL_Latin1_General_CP1_CI_AS
  7.  
  8. SELECT * FROM myTable
  9. WHERE convert(varbinary, myField) = convert(varbinary, 'sOmeVal')
  10.  
  11. SELECT * FROM myTable WHERE myField LIKE 'sOmeVal' COLLATE SQL_Latin1_General_CP1_CI_AS
  12.  
  13. upper(@yourString)
Add Comment
Please, Sign In to add comment