刚刚做了一个测试,数据库中有记录3,345,257条:语句一,执行时间40.07秒
select * from tb_city_outport_detail_fnl 
where (dep_date='2002-07-01' or dep_date='2002-07-02' or dep_date='2002-07-03')
and (air_code='HU' or air_code='SC' or air_code='2Z' or air_code='CA')语句二,执行时间39.03秒
select * from tb_city_outport_detail_fnl 
where dep_date in ('2002-07-01','2002-07-02','2002-07-03') 
and air_code in ('HU','SC','2Z','CA') 执行结果为1824条,从测试结果上看,效率几乎差不多。