Guest User

Untitled

a guest
Jun 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. select l.*
  2. from project_listings l
  3. left join ( select project_id
  4. from project_bids
  5. where user_id = ?
  6. ) bids
  7. on l.id = bids.project_id
  8. where bids.project_id is null
  9. and l.on_step = 'completed'
  10. and l.work_type = '1'
Add Comment
Please, Sign In to add comment