1

我有一张这样的桌子

Name  Country State
John  US      California

我想用一个 concat 做一个 select 语句,所以我得到了这样的东西

http:// getmehelp / US / John.txt
4

3 回答 3

2

您正在寻找的查询应该是这个:

SELECT concat('http://getmehelp/',Country,'/',Name,'.txt')
FROM table;
于 2013-02-25T12:05:56.827 回答
2
SELECT CONCAT ( 'http://getmehelp/', country , '/', name , '.txt') AS link;
于 2013-02-25T12:06:39.650 回答
0
select concat('http://getmehelp/', country, '/', name, '.txt')
from your_table
于 2013-02-25T12:04:09.437 回答