查单条数据与多条数据
好好学习,天天向上!!!
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.
查询单条语句,例如我们有个user表,里面有很多的用户,我们先要实例化这张表
$user = M('user');
我们来看下查询单条怎么写,要用到find();
$res = $user->order('id desc')->find();
倒序一下,取一条数据
查询全部
$res = $user - order('id desc')->select();
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.
查询单条语句,例如我们有个user表,里面有很多的用户,我们先要实例化这张表
$user = M('user');
我们来看下查询单条怎么写,要用到find();
$res = $user->order('id desc')->find();
倒序一下,取一条数据
查询全部
$res = $user - order('id desc')->select();