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