1
Coulmns表現:添加列查詢與前行的列值輸出在MySQL
id toDate
----- ----------
111 02-03-2017
111 20-03-2017
111 01-04-2017
111 05-04-2017
Coulmns在查詢將返回:
id toDate fromDate
----- ---------- ----------
111 02-03-2017 01-01-01 <---(always first record value)
111 20-03-2017 02-03-2017 <---(rest of the rows should be previous record's toDate value)
111 01-04-2017 20-03-2017
111 DatedNow 01-04-2017 <-- last record toDate should be current date
我有以下查詢 查詢select id,toDate from myHistory order by toDate;
需要添加查詢以獲得所需輸出的查詢是什麼?
在數據庫中沒有 「上一行」。直到您使用 – Jens