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.
「id、gallery_name、filename、type、size、caption」という列を持つ「photographs」というテーブルがある場合、gallery_name 列の一意の値のみをリストした順序なしリストを作成するにはどうすればよいですか?
私があなたの質問を正しく理解していれば (つまり、あなたがやろうとしていることの複雑な側面を見落としていなければ)、次の MySQL コマンドが機能するはずです:
SELECT DISTINCT `gallery_name` FROM `photographs`