search

Home  >  Q&A  >  body text

这个thinkphp里面的查询还是有点没明白?

查单条数据与多条数据

小白小白2864 days ago1247

reply all(2)I'll reply

  • 数据分析师

    数据分析师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.

    reply
    0
  • 迷茫

    迷茫2017-02-11 09:23:09

    查询单条语句,例如我们有个user表,里面有很多的用户,我们先要实例化这张表

    $user = M('user');

    我们来看下查询单条怎么写,要用到find();

    $res = $user->order('id desc')->find();

    倒序一下,取一条数据

    查询全部

    $res = $user - order('id desc')->select();

    reply
    0
  • Cancelreply