ThinkPHP之查询语言
发布:smiling 来源: PHP粉丝网 添加日期:2014-04-12 13:06:50 浏览: 评论:0
ThinkPHP中的查询语言:
普遍查询
1)字符串形式
$list=$user->where('username=bbbb')->select();
2)数组形式
- $data['username']='bbbbb';
- $list=$user->where($data)->select();
3)对象形式
- $user=M('user');
- $a=new stdClass();
- $a->username='bbbbb';
- $list=$user->where($a)->select();
查询表达式
EQ (=)
NEQ(!=)
GT (>) LT(<) [NOT]BETWEEN(对应sql中的between) IN
EGT(>=)ELT(<=)LIKE (对应sql中的like)
EXP(使用标准sql语句实现较复杂的情况)
区间查询
- $map['id'] = array(array('gt',3),array('lt',10), 'or') ;
- $map['name'] = array(array('like','%a%'), array('like','%b%'), array('like','%c%'), 'ThinkPHP','or');
对应的查询条件是:(`name` LIKE '%a%') OR (`name` LIKE '%b%') OR (`name` LIKE '%c%') OR (`name` = 'ThinkPHP');
组合查询:
1)字符串模式查询(_string)
- $user=M('User');
- $data[id]=array('neq',1);
- $data['username']='aaaaa';
- $data['_string']='userpass=123 and createtime=2012';
- $list=$user->where($data)->select();
2)请求字符串查询方式
- $data['id']=array('gt',100);
- $data['_query']='userpass=1&username=aa&_logic=or';
- $list=$user->where($data)->select();
3)复合查询
- $wh['username']=array('like','%thinkphp%');
- $wh['userpass']=array('like','3%');
- $wh['_logic']='or';
- $data['_complex']=$wh;
- $data['id']=array('gt',100);
- $list=$user->where($data)->select();
对应于:(id>100)AND( (namelike'%thinkphp%')OR(titlelike'%thinkphp%') )
统计查询
- count():$num=$user->count();$num=$user->count('id');
- max():
- min():
- avg():
- sum():
定位查询
要求当前模型必须继承高级模型类才能使用
- $User->where('score>0')->order('score desc')->getN(2);
- $User-> where('score>80')->order('score desc')->getN(-2);
- $User->where('score>80')->order('score desc')->first();
- $User->where('score>80')->order('score desc')->last();
SQL查询
- $model=new Model();
- $list=$model->query("select * from think_user where id>1 and id<10");
- $model=new Model();
- $Model->execute("update think_user set name='thinkPHP' where status=1");
动态查询
- $user = $User->getByName('liu21st');
- $user = $User->getFieldByName('liu21st','id');
- $user-> where('score>80')->order('score desc')->top5();
Tags: ThinkPHP 查询语言
相关文章
- ·ThinkPHP中自定义错误页面和提示页面 (2013-11-15)
- ·ThinkPHP中Ajax返回(2013-11-15)
- ·ThinkPHP中处理表单中注意(2013-11-15)
- ·ThinkPHP中I(),U(),$this->post()等函数(2013-11-15)
- ·ThinkPHP中公共函数路径和配置项路径的映射(2013-11-15)
- ·ThinkPHP中公共配置文件和各自项目中的配置文件组合(2013-11-15)
- ·ThinkPHP在控制器里的javascript代码不能执行解决方法(2013-11-29)
- ·ThinkPHP3.0略缩图不能保存到子目录(2013-12-03)
- ·thinkphp的循环结构(2014-01-10)
- ·thinkphp特殊标签使用(2014-01-10)
- ·thinkphp模板输出汇总(2014-01-10)
- ·thinkphp模板的赋值与替换(2014-01-10)
- ·thinkphp连贯操作(2014-01-10)
- ·thinkphp区间查询、统计查询、SQL直接查询(2014-01-10)
- ·thinkphp的普通查询与表达式查询(2014-01-10)
- ·RBAC类在ThinkPHP中的四种使用方法(2014-01-10)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)