I have an existing query that looks like this:
SELECT kingshocks.[Partnumber] AS sku
FROM kingshocks;
What I would like to do is something like this:
SELECT kingshocks.[Partnumber] AS sku,
"Default" AS store,
FROM kingshocks;
What I mean to do is return a column called store with the word "Default" in all the rows that are returned. Does anyone know how this would be done with SQL?
Thanks!