我需要通过两个表的组合来获取结果。
select template_id
from templatetbl
where template_xml like '%889d-5765405edb42%'
在查询时,我得到了 24 条记录。
现在我想用我之前得到的模板 id 获取另一组记录。
select *
from sites
where site_xml like '%templateid%'.
Templateid 是我之前得到的。
我试过这样的查询
select *
from sites
where site_xml like (select template_id
from templatetbl
where template_xml like '%889d-5765405edb42%')
但是由于 单行子查询返回多行而出现错误。
请帮助结合这两个查询