码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp-table

时间:2017-02-10 00:13:24      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:thinkphp-table

用法

    切换操作的数据表

    对多表进行操作

示例

直接操作表

Db::table(‘think_user‘)->where(‘status>1‘)->select();

指定数据库

Db::table(‘db_name.think_user‘)->where(‘status>1‘)->select();

省略前缀

Db::table(‘__USER__‘)->where(‘status>1‘)->select();

多表操作

Db::field(‘user.name,role.title‘)
->table(‘think_user user,think_role role‘)
->limit(10)->select();

多表操作-数组方式

Db::field(‘user.name,role.title‘)
->table([‘think_user‘=>‘user‘,‘think_role‘=>‘role‘])
->limit(10)->select();


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1896483

thinkphp-table

标签:thinkphp-table

原文地址:http://suyanzhu.blog.51cto.com/8050189/1896483

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!