[Solved] Selecting more than one value


You probably want something like this

SELECT Name, Composer, REPLACE(Composer,"https://stackoverflow.com/",',') AS Make
FROM tracks

But it really is impossible to tell for sure given that you don’t tell us any of the table or field names in your database and very little about your database model

solved Selecting more than one value