ホームページ > に質問 > 本文
P粉8484421852023-09-02 09:36:41
SELECT TOP 1 i.item_name FROM Transactions t INNER JOIN Items i ON i.item_id = t.item_id WHERE purchase_time = (select *, MIN(purchase_time) FROM Transactions) GROUP BY 1 ORDER BY COUNT(*) DESC