Advertisement
Guest User

Untitled

a guest
Mar 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // This does not work and throws syntax errors in Line 2
  2.  
  3. SELECT
  4.     top 1 *
  5. FROM
  6.     topic
  7. WHERE
  8.     id = '624aaab6-2d2d-45dc-a425-c2863f05779c'
  9.  
  10.  
  11.  
  12. // this works
  13.  
  14. SELECT
  15.     *
  16. FROM
  17.     topic
  18. WHERE
  19.     id = '624aaab6-2d2d-45dc-a425-c2863f05779c'
  20. LIMIT
  21.     1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement