数据分析师2017-10-01 00:03:40
I still don’t understand the query in thinkphp? -PHP Chinese website Q&A-I still don’t understand the query in thinkphp? -PHP Chinese website Q&A
Let’s take a look and learn.
迷茫2017-02-11 09:23:09
查询单条语句,例如我们有个user表,里面有很多的用户,我们先要实例化这张表
$user = M('user');
我们来看下查询单条怎么写,要用到find();
$res = $user->order('id desc')->find();
倒序一下,取一条数据
查询全部
$res = $user - order('id desc')->select();