数据库--模糊查询的条件
1、条件为另外一张表查询出的数据
select * from table where 字段名 like concat (’%’,(select 字段名 from table2 where 条件),’%’)
2、 另外一张模糊查询的数据作为这张表查询的条件
select * from table where 字段名 in(select 字段名 from table2 where 字段名2 like concat ("%值%"))
...
原创
2020-12-20 17:26:44 ·
575 阅读 ·
0 评论