用sql查询表1的某字段值包含在表2的某字段值内容里的记录

2025-04-03 11:47:09
推荐回答(2个)
回答1:

Select * From "入住名册 " where exists( Select 产权证号 From "房屋产权表"
WHERE "房屋产权表".产权人 like '%' || "入住名册".住户名称 || '%')

回答2:

试试这个:
Select * From "入住名册 " where 住户名称 in (select 产权人 from 房屋产权表)