Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
値の後に文字を追加する必要があります。例えば:
SELECT brand FROM `autoinfo` WHERE 1
結果:
Audi Ford ...
その結果が必要です:
Audi w Ford w ...
これどうやってするの?
の後にシンボルを連結する必要がある場合は、次の関数brandを使用します。CONCAT()
brand
CONCAT()
SELECT concat(brand, ' w') as brand FROM `autoinfo` WHERE 1;