Guest User

Untitled

a guest
Jul 16th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #SELECT * FROM tasks
  2. task = Task.all
  3.  
  4. #SELECT * FROM tasks LIMIT 1
  5. task = Task.first
  6.  
  7. #SELECT * FROM tasks WHERE (tasks.id = 7)
  8. task = Task.find(7)
  9.  
  10. #SELECT * FROM tasks LIMIT 1
  11. task = Task.first
  12.  
  13.  
  14. Task.first(:conditions => ["priority = ?", 1])
  15.  
  16. Task.find_by_name('Buy Groceries')
Add Comment
Please, Sign In to add comment