我需要將以下內容(sql in access)轉換爲mysql。它是第一個查詢的組,但obv mysql不能處理第一個或最後一個。通過MySql中的第一個查詢分組
SELECT First([20121202].Date) AS FirstOfDate, First([20121202].Time) AS FirstOfTime, [20121202].HomeMatchingId, [20121202].AwayMatchingId, [20121202].RunningStatus
FROM 20121202
GROUP BY [20121202].HomeMatchingId, [20121202].AwayMatchingId, [20121202].RunningStatus
HAVING ((([20121202].RunningStatus)=1))
基本上我在這遊戲(hometeam v awayteam)變爲重放時後(runningstatus = 1)
在此先感謝
請提供架構,示例數據和所需輸出。 – RedFilter