NonplayerCharacter

PGexercises.com | Last 10 bookings by endtime, starttime

Mar 22nd, 2022
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- https://pgexercises.com/questions/date/endtimes.html
  2. select starttime, starttime + slots*('30 minutes'::INTERVAL) as endtime
  3. from cd.bookings
  4. order by 2 desc, 1 desc
  5. limit 10
Add Comment
Please, Sign In to add comment