select 多字段批量查询 和 update 多字段批量更新
-- 多字段批量更新
update table_name set field_name='hello world' where (field_1,field_2)in(('xxxxxxx','xxxxxxx'))
--多字段批量查询
select * from table_name where (field_1,field_2)in(('xxxxxxx','xxxxxxxx'))
...
原创
2019-08-01 10:07:36 ·
1592 阅读 ·
0 评论