我创建了一个包含文章的网站,并且希望创建一个搜索区域。
因此,我在SQL上创建了所有代码块,但我希望在6个不同的表中检索包含“ MSA”或其他代码的文章的标题
表名:
stiga
stihl
staub
goldoni
echo
toro
我尝试过LIKE,但他告诉我结果不明确:/
答案 0 :(得分:4)
使用union all
:
select title from stiga where title like '%MSA%'
union all
select title from stihl where title like '%MSA%'
union all
. . .