Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. +-------------+-------------+------------+------------+---------------------+
  2. | mod_coli_id | line_number | total_cost | total_sell | modify_date |
  3. +-------------+-------------+------------+------------+---------------------+
  4. | 1403974 | 1 | 544.5000 | 640.5900 | 2016-09-13 13:21:15 |
  5. | 1403976 | 1 | 544.5000 | 640.5900 | 2016-09-13 13:26:54 |
  6. | 1403986 | 1 | 544.5000 | 544.5000 | 2016-09-13 13:35:49 |
  7. | 1405972 | 1 | 544.5000 | 544.5000 | 2016-09-15 10:02:11 |
  8. +-------------+-------------+------------+------------+---------------------+
  9.  
  10. SELECT mod_coli_id,line_number,total_cost,total_sell,max(modify_date) as modify_date
  11. From mod_customer_order_line_item
  12. Where customer_order_id=17761 AND modify_date<='2016-09-14'
  13.  
  14. +-------------+-------------+------------+------------+---------------------+
  15. | mod_coli_id | line_number | total_cost | total_sell | modify_date |
  16. +-------------+-------------+------------+------------+---------------------+
  17. | 1403974 | 1 | 544.5000 | 640.5900 | 2016-09-13 13:35:49 |
  18. +-------------+-------------+------------+------------+---------------------+
  19.  
  20. +-------------+-------------+------------+------------+---------------------+
  21. | mod_coli_id | line_number | total_cost | total_sell | modify_date |
  22. +-------------+-------------+------------+------------+---------------------+
  23. | 1403986 | 1 | 544.5000 | 544.5000 | 2016-09-13 13:35:49 |
  24. +-------------+-------------+------------+------------+---------------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement