0
我有fixedassets
和fixedassets_history
表。加入兩個表並獲取兩個表中的最新條目取決於MySQL中兩個表的更新日期
在fixedassets
表中,有id
,purchase_date
,purchase_price
,updated_date
。
在fixedassets_history
表中有fixedassets_id
,description
,updated_date
。
我加入這些表id
。我想根據fixedassets
的update_date
字段和fixedassets_history
的updated_date
在MySQL中檢索這些表中最近更新的記錄。
這是我的SQL腳本:
SELECT fa.*,fh.text,fh.date
FROM fixedassets fa
JOIN fa_history fh ON fa.id=fh.fixedassets_id
ORDER BY fa.updated_date desc,fh.date desc limit 5