Guest User

Untitled

a guest
Dec 11th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. CREATE TABLE "table" (
  2. "id" int4 NOT NULL,
  3. "edit_date" date,
  4. "app_date" date,
  5. "app_id" int4,
  6. "status" varchar(255)
  7. )
  8.  
  9. SELECT
  10. app_id, status
  11. FROM
  12. table
  13. WHERE
  14. app_id = 1
  15. ORDER BY
  16. app_date DESC,
  17. edit_date DESC
  18. LIMIT 1
  19.  
  20. SELECT
  21. app_id, status
  22. FROM
  23. table
  24. WHERE
  25. app_id in (...)
  26. ORDER BY
  27. app_date DESC,
  28. edit_date DESC
  29. ...
Add Comment
Please, Sign In to add comment