简体   繁体   中英

MySQL query to concatenate data from multiple columns

I need to retrieve data from the database.I have created a table vendor that includes vendor_name, vendor_code, etc,.

I wish to get the result in the exact way as given here vendo Ali Murtaza have 200 code where vendo Ali Murtaza is the verdor_name and 200 is vendor_code

Try the following MySQL query on Workbench.

SELECT CONCAT(vendor_name, " have ", vendor_code, " code.") from vendor_table;

Reference: https://www.w3resource.com/mysql/string-functions/mysql-concat-function.php

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM