My query:
SELECT sites.siteName, sites.siteIP, history.date
FROM sites INNER JOIN
history ON sites.siteName = history.siteName
ORDER BY siteName,date
First part of the output:
How can I remove the duplicates in siteName
column? I want to leave only the updated one based on date
column.
In the example output above, I need the rows 1, 3, 6, 10
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…