我在一个SQL数据库中有2个表,除了id之外,它们不包含任何重复项,只是彼此的延续...
table1
id | item | price
---------------------------
232 | Green apple | 38
12 | Red Grape | 2
3 | Yellow Banana | 38
5 | Yellow Mango | 2
table2
id | item | price
---------------------------
33 | Blue Pear | 34
1 | Purple Grape | 23
72 | Orange Orange | 8
我正在寻找这样的物品..
SELECT
item, price
MATCH (item) AGAINST ('Grape') AS matchscore,
FROM
table1
WHERE
MATCH (item) AGAINST ('Grape')
ORDER
BY matchscore DESC
我如何将table2
项目添加到搜索中?我已经查看了UNION
,但我不认为这是我这里需要的。
1条答案
按热度按时间n6lpvg4x1#
您可以在以下位置使用联合: