我有这样的数据,
我如何从上次交易中获得总价值,而今天却没有,我尝试使用这种查询
SELECT * FROM `stock` ORDER BY date_created DESC, time_created ASC
但是结果是这样的
| Valas | Total | Date Created | Time Created |
| VLS001 | 13750 | 2019-05-13 | 15:15
| VLS001 | 13900 | 2019-05-11 | 14:30
| VLS001 | 13650 | 2019-05-11 | 15:39
| VLS001 | 13850 | 2019-05-10 | 15:20
我想得到这样的结果
| Valas | Total | Date Created | Time Created |
| VLS001 | 13650 | 2019-05-11 | 15:39
| VLS001 | 13900 | 2019-05-11 | 14:30
| VLS001 | 13850 | 2019-05-10 | 15:20
我尝试通过查询date_created-1来获取上次交易的结果,但没有今天的交易的结果,但是前一天没有交易发生错误
最佳答案
在WHERE
列上添加一个date_created
子句,指定该值必须与今天的日期不同。
SELECT *
FROM STOCK
WHERE date_created != CURDATE()
ORDER BY date_created DESC, time_created ASC;