0
我很新的這一點,在我的查詢的SUM和MAX有問題:的MySQL查詢:SUM/MAX問題
SELECT Score.performerId, Performer.performerName,
Performer.countrycode, Country.countryName, Event.eventName, Score.points
FROM Score, Performer, Country, Event
WHERE points = (SELECT MAX(points) FROM Score
WHERE roundName = 'Final')
AND roundName = 'Final'
AND Score.performerId=Performer.performerId
AND Performer.countryCode=Country.countryCode
AND Score.eventId=Event.eventId
,我將不勝感激任何幫助。