私はこのようなテーブルを持っています
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