search
HomeBackend DevelopmentPHP TutorialSummary of yii database query operations_PHP tutorial

Yii database query operation summary

A summary of database query data methods under the yii framework.

(1)$result=Yii::app()->dbName->createCommand($sql)->queryRow();

The returned result set is a one-dimensional array if it is not empty. The dbName in the code is the name of the library where the data table is located, and $sql can be any SQL statement.

(2)$result=Yii::app()->dbName->createCommand($sql)->queryAll();

The returned result set is a two-dimensional array if it is not empty. The dbName in the code is the name of the library where the data table is located, and $sql can be any SQL statement.

(3)$result=Region::model()->findByPk($id);

The returned result is an object if it is not empty. Region in the code represents the Region.php file stored in the models directory. The value of $id here represents the value equal to the primary key defined in Region.php.

(4)$result=Region::model()->findAll($condition,$params);

For example: findAll("username=:name",array(":name"=>$username));

If the result set returned is not empty, it is a two-dimensional array, and the first dimension of the result set of the array is an object.

(5)$admin=User::model()->findAllByPk($postIDs,$condition,$params);

For example: findAllByPk($id,"name like ':name' and age=:age",array(':name'=>$name,'age'=>$age));

This method queries a set based on the primary key. If the returned result set is not empty, it will be a two-dimensional array. The first dimension of the result set of the array is an object. You can also use multiple primary keys, such as: findAllByPk(array(1,2));

(6)$admin=User::model()->findAllBySql($sql,$params);

If the returned result set is not empty, it will be a two-dimensional array. The first dimension of the result set of the array is an object. Examples of use are:

findAllBySql("select * from admin where username=:name",array(':name'=>'admin'));

(7)$post=Post::model()->findBySql($sql,$params);

The returned result set is an object if it is not empty, and the query result is only the first piece of data. Such as:

findBySql("select * from user where username=:name",array(':name'=>'phpernote.com'));

(8)$row=User::model()->find($condition,$params);

The returned result set is an object if it is not empty, and the query result is only the first piece of data. Such as:

find('username=:name',array(':name'=>'admin'));

or:

find(array('condition'=>'user_id=:user_id','params'=>array(':user_id'=>$uid)));

(9)$admin=User::model()->findByAttributes($attributes,$condition,$params);

This method is to query data based on conditions, which can be multiple conditions. Put the conditions into an array. The query result set is an object and has only one piece of data, such as:

findByAttributes(array('username'=>'admin'));

or:


(10)$admin=User::model()->findAllByAttributes($attributes,$condition,$params);

The returned result set is a two-dimensional array if it is not empty, and the result set in the first dimension of the array is an object.

(9)

// If the query conditions are very complex, use the CDbCriteria class

$criteria=new CDbCriteria;
$criteria->select='title';
$creteria->condition='postID=:postID';
$criteria->params=array(':postID'=>10);
$post=Post::model()->find($criteria); // No second parameter required

//Another better way of writing

$post=Post::model()->find(
array(
         'select'=>'title',
         'condition'=>'postID=:postID',
          'params'=>array(':postID'=>10)
)
);

Query the number and determine whether the query has results

1. $n=Post::model()->count($condition,$params);

This method is to query how many records a collection has based on a condition and return an int number, such as:

count("username=:name",array(":name"=>$username)); 

2. $n=Post::model()->countBySql($sql,$params);

This method is to query how many records a collection has according to the SQL statement and return an int type number, such as:

countBySql("select * from admin where username=:name",array(':name'=>'admin'));

3. $exists=Post::model()->exists($condition,$params);

This method is to query whether the array obtained has data based on a condition. If there is data, it returns true, otherwise it is not found.

Articles you may be interested in

  • How to sort database query results according to the pinyin of the first letter of Chinese characters
  • php mysql database operation class
  • Mysql database cache cache Functional analysis, debugging and performance summary
  • Navicat for mysql Remote connection to mySql database prompts 10061,1045 error solution
  • Optimization for MySQL to increase query speed of millions of data
  • MySQL server master-slave database synchronization configuration
  • MySQL rapid insertion method of large data volume and statement performance optimization
  • How to locate, eliminate and avoid MySQL database performance problems

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/980454.htmlTechArticleYii database query operation summary Summary of methods for database query data under the yii framework. (1)$result=Yii::app()-dbName-createCommand($sql)-queryRow(); If the result set returned is not...
Statement
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
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools