兩個表這是我的查詢:MySQL的加入兩個地方
SELECT a.id, a.hostname, a.asset_tag, d.model, b.location,
c.type, a.earmarked, a.earmarked_office, a.earmarked_user,
a.earmarked_date, a.earmarked_by
FROM laptops a
JOIN locations b ON a.location = b.id
JOIN types c ON a.type = c.id
JOIN models d ON a.model = d.id
WHERE b.stock = 1
現在,a.earmarked_office
場實際上是在locations
表中的ID,這是我們已經在使用,填補了b.location
參考。我怎樣才能在相同的聲明中檢索earmarked_office
的實際位置名稱?
謝謝 - 我現在就買下。 – daninthemix