zybzrb 发表于 2018-6-23 07:50:33

$this->db->query(); $this->db->get_where(); 对比

请问一下
$this->db->query();
$this->db->get_where();

这两个读取数据的性能对比;在做分页时$this->db->get_where(); 感觉性能好些,速度快些;
如果在平时,读取一条或很少条时,使用哪个好些。

Hex 发表于 2018-6-27 15:44:19

性能原则上没区别,底层都是一样的,主要看你的 SQL 写的性能怎么样。
页: [1]
查看完整版本: $this->db->query(); $this->db->get_where(); 对比