Home > php教程 > php手册 > body text

yii数据库的查询方法,yii数据库方法

WBOY
Release: 2016-06-13 08:48:48
Original
949 people have browsed it

yii数据库的查询方法,yii数据库方法

本文实例讲述了yii数据库的查询方法。分享给大家供大家参考,具体如下:

这里介绍两种查询方法。一种是直接查询,一种是使用借助criteria实现查询。
复制代码 代码如下:$user=User::model();

1. 直接查询:

$arr=array(
  "select"=>"username,password,email", //要查询的字段
  "condition"=>"username like '%6'", //查询条件
  "order"=>"id desc",
  "limit"=>5,
  "offset"=>1,
);
$info=$user->findAll($arr);
Copy after login

2. 使用criteria:

$criteria=new CDbCriteria();
$criteria->select="username,password,email";
$criteria->condition="username like '%1'";
$criteria->limit=5;
$criteria->order="id desc";
$criteria->offset=1;
$info=$user->findAll($criteria);

Copy after login

希望本文所述对大家基于yii框架的PHP程序设计有所帮助。

您可能感兴趣的文章:

  • Yii入门教程之目录结构、入口文件及路由设置
  • Yii入门教程之Yii安装及hello world
  • Yii PHP Framework实用入门教程(详细介绍)
  • Yii查询生成器(Query Builder)用法实例教程
  • YII使用url组件美化管理的方法
  • yii去掉必填项中星号的方法
  • Yii中CGridView实现批量删除的方法
  • yii权限控制的方法(三种方法)
  • YiiFramework入门知识点总结(图文教程)
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template