为了表述方便,简化了下问题
两张表
表名       字段 字段   字段
[article1] id1, title1,content1
[article2] id2, title2,content2想要在article1找出所有id2为12,25的title1为titile2的子串的记录,怎么找啊
上面的话好像有点拗口
意思就是先找出select * from article1 where id=12 or id=25
然后在article1中找出上面记录集中title1为其子串的记录谢了!