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 に答える