The criteria of the operation of YII model Lookup database method _php Instance

Source: Internet
Author: User
Tags smarty template yii

The example in this article describes the method of finding a database for the criteria of YII model operations. Share to everyone for your reference, specific as follows:

Data Model Search methods:

Public Function Search ()
{
  //Warning:please Modify the following code to remove attributes that
  //should No t be searched.
  $criteria =new Cdbcriteria;
  $criteria->compare (' id ', $this->id);
  $criteria->compare (' title ', $this->title,true); Supports Fuzzy Lookup
  $criteria->compare (' content ', $this->content,true);//support for Fuzzy Lookup
  $criteria->compare (' type ') , $this->type);
  $criteria->compare (' user ', $this->user,true); Support Fuzzy Lookup
  $criteria->compare (' status ', $this->status);
  $criteria->compare (' Create_data ', $this->create_data,true); Support for Fuzzy Lookup return
  new Cactivedataprovider ($this, Array (
    ' criteria ' => $criteria,
    ' pagination ' => Array (
      ' pageSize ' =>50,
    ),)
  ;
}

To define a comparison operation:

$criteria->compare (' create_time ', ' <= '. $this->endtime),
//create morning less than or equal to specified time

Define the fields to find:

The results of the lookup
$criteria->select = ' id,title,content,author,status,createtime ', or
you can define the $criteria in one of the following ways
- >select = array (' id ', ' title ', ' content ', ' author ', ' Status ', ' Createtime '),

Define a fill search condition:

Define condition
$criteria->select = ' Status=1 ',
//Add match
$criteria->compare (' title ', $this->title,true) ,
//Add a condition $condition can be an array, can be a string, and can omit
$criteria->addcondition ($condition, ' and '),
//Add in condition $ column is the field name
$criteria->addincondition (string $column, array $values, string $operator = ' and ')
//Add notin condition
$criteria->addnotincondition (string $column, array $values, string $operator = ' and ')
//Add like condition
$ Criteria->addsearchcondition (String $column, String $keyword),
//Add between condition
$criteria-> Addbetweencondition (String $column, String $valueStart, String $valueEnd, string $operator = ' and '),

Join Linked Table Query

$criteria->join = ' Left join users on Users.id=authorid ',

Order Query Result ordering:

$criteria->order = ' Createtime DESC ',

Group results grouped:

$criteria->group = ' ProjectID, Teamid ',

Having filtered group result grouping number:

$criteria->having = ' SUM (revenue) <50000 ',

For more information on YII-related content, readers who are interested in this site can view the topics: Introduction to YII Framework and summary of common skills, "Summary of PHP Excellent development framework", "Smarty Template Introductory Course", "Introduction to PHP object-oriented programming", "PHP string" Summary of Usage , "Php+mysql Database operation Introduction Tutorial" and "PHP common database Operation Skills Summary"

I hope this article will help you with the PHP program design based on the YII framework.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.