Page 1 of 1

Help SQL statement to list all artists?

PostPosted: Mon Nov 30, 2015 5:43 pm
by bcrivers
Does anyone know the correct structure for an SQL statement to list all the artist without duplicates?

Re: Help SQL statement to list all artists?

PostPosted: Mon Nov 30, 2015 5:46 pm
by mitrailer
Code: Select all
SELECT DISTINCT artist FROM media_file

Re: Help SQL statement to list all artists?

PostPosted: Mon Nov 30, 2015 6:16 pm
by bcrivers
Thank you!