我有一张这样的表
Name Country State
John US California
我想用concat做一个select语句,所以我得到这样的东西
http:// getmehelp / US / John.txt
答案 0 :(得分:2)
您正在寻找的查询应该是这样的:
SELECT concat('http://getmehelp/',Country,'/',Name,'.txt')
FROM table;
答案 1 :(得分:2)
SELECT CONCAT ( 'http://getmehelp/', country , '/', name , '.txt') AS link;
答案 2 :(得分:0)
select concat('http://getmehelp/', country, '/', name, '.txt')
from your_table