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.
雇用主の日付「12 月 13 日」を選択して、結果がこの図のようになる場合、テーブル (最も右) を取得するためのクエリをより高速に作成するにはどうすればよいですか? 誰か助けて?
ありがとうございました !
DISTINCT列から値を一意に選択するために使用します。
DISTINCT
SELECT DISTINCT Employer_ID FROM TableName
試してみてください:
SELECT ID, Employer_ID FROM table GROUP BY Employer_ID
試す
SELECT * FROM tablename GROUP BY Employer_ID