Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Select * form customer `(NOLOCK)` as c
  2.  
  3. Select * from customer `WITH(NOLOCK)` as c
  4.  
  5. (NOLOCK)
  6.  
  7. 1WITH (NOLOCK)
  8.  
  9. (WITHs+(NOLOCK))s+(ASs+[A-Z]+)
  10.  
  11. 2 1
  12.  
  13. Select * from QUOTE (NOLOCK) AS TB
  14.  
  15. Select * from QUOTE WITH (NOLOCK) AS TB
  16.  
  17. Select * from QUOTE AS TB WITH (NOLOCK)
  18.  
  19. (WITHs+(NOLOCK))s+(ASs+[A-Z]+)
  20.  
  21. (WITHs+(NOLOCK))
  22. s+
  23. (ASs+[A-Z]+)
  24.  
  25. WITH
  26. s+
  27. (NOLOCK)
  28.  
  29. AS
  30. s+
  31. [A-Z]+
  32.  
  33. 2 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement