最近开发项目,由于要考虑大数据的处理,对比了一下,使用Thinkphp执行SQL语句的效率,要比使用模型来做大数据的更新,效率要高很多。
总结:复杂的运算,以及对大数据的查询,更新,建议使用SQL语句:
1、query 查询方法
Db::query("select * from think_user where status=:id", ['id' => 1]); Db::query("select * from think_user where status=:id", ['id' => 1], true);
2、execute 更新/读写方法
Db::execute("update think_user set name='thinkphp' where status=1"); Db::query("select * from think_user where id=? AND status=?", [8, 1]); Db::execute("update think_user set name=:name where status=:status", ['name' => 'thinkphp', 'status' => 1]);
参考:
https://www.kancloud.cn/manual/thinkphp6_0/1037570
打完收工!
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/287941.html