sql语句里面用mysql函数的血泪教训

sql语句如下:

$sql = "select * from sdb_b2c_orders where salearea_id={$cityId} and memo like '%$saleName%' and from_unixtime(ship_time,'%Y-%m-%d')='$ship_date'";

sdb_b2c_orders表里有400万数据,这条sql尽然跑了22秒,好可怕。。。,最后发现性能问题出在from_unixtime函数上面,看来sql语句里面真的是不能用函数。

解决方法:
因为ship_time在数据库里存储的是时间戳,而$ship_date是日期,所以我只需要把$ship_date转成时间戳,然后用between就可以解决这个问题。
$startTimestamp = strtotime($ship_date);
$endTimestamp = $startTimestamp + 86400;
$sql = "select * from sdb_b2c_orders where salearea_id={$cityId} and memo like '%$saleName%' and ship_time between $startTimestamp and $endTimestamp";

修改之后这条sql的运行时间不到1s。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值