I need to add a character after a value. For example:
SELECT brand FROM `autoinfo` WHERE 1
result:
Audi
Ford
...
I need to that result:
Audi w
Ford w
...
How can I do this?
If you need to concatenate a symbol after the brand, then use the CONCAT() function:
SELECT concat(brand, ' w') as brand
FROM `autoinfo`
WHERE 1;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With