Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1 つの列に MAX 値を含むすべての行と列を取得したいと考えています。
例: 3 列 - ID (一意ではない)、名前、年齢 年齢の最大値を含むすべての行と列が必要です。
ありがとう
SELECT * FROM テーブル WHERE 年齢 = (SELECT MAX(年齢) FROM テーブル)
Select * from table where value=max(value)
多分あなたはどこを持っていると交換する必要があります