我有以下查询:
SELECT
a.id,
concat( a.name, ' -', b.title, '-') AS title
FROM
tourist_tour as a
left join ategories as b on a.category=b.id
order by a.name asc
我想在结果的开头添加一行,其中 id 为 0,标题为“请选择游览”。
我已经看到使用的答案
Select 0, "select a tour"
UNION ALL
rest of select query
但它不适用于我的加入。
有任何想法吗?
谢谢