I need to add characters to values in a column. For example:
Price column
22.99
12.95
10.35
For my query output, I need this column to show as
Price column
Price is 22.99
Price is 12.95
Price is 10.35
I already used this to convert these values to char as I think I have to do this to insert characters in this column...
CONVERT (char(12), price) AS price
I just can't figure out how I can write the command to add "Price is" in every row :(
Please help, thank you!