So i want to create 3 columns in my query. One of those columns in the query needs to be renamed and use values from the Composer column. This is what i have so far:
CREATE VIEW [Multiple Composers] AS
SELECT Name, Composer FROM Track
WHERE Composer LIKE '%/%'
AND Composer NOT LIKE 'AC/DC'
Not sure how to go about doing this and would appreciative some advice
as NewNameafter the column.