SQLServer 两个表 两个字段模糊查询 出现重复数据解决方法
关键字:SQLServer 两个表模糊查询? 重复数据? 解决方法
假设我有两个表:
??????? 表A??????????????????????????????????????????????????????? 表B
??????? 字段: a_id??????????? 编号?????????????????????????? ?字段: b_id???????????? 编号
??????????????? a_name????? 名称?????????????????????????????? ??????? b_name?????? 名称
??????????????? a_class??? ?? 类别???????????????????????????????????????b_content??? 主题
?????????????? ?a_tel?????????? 电话
??????????????? a_address? 地址
说明:表A中 a_class 的外键为:表b中 b_id字段
?
如果我们需要根据 a_name和a_address 这两个字段进行模糊查询。也许你会写这样的sql语句:
select * from A,B where A.a_class=B.b_id and a_name like '%张三%' or a_address like '%济南%';
?
这样会出现数据重复的现象。我们需要改成以下语句:
select * from A,B where A.a_class=B.b_id and (a_name like '%张三%' or a_address like '%济南%');
?只是加了一对括号而已......?
??????
清风夜影寒:http://qfyyh.iteye.com
?