I have the following code below to select a column from my table and add 'abcd' string to all the values in my column. However, how would I go about ignoring the empty values so rows 10-14 would be empty and while rows 1-9 would remain the same?
SELECT
vendor + 'abcd'AS [vendor_key]
FROM [table]
