search
HomeBackend DevelopmentPHP TutorialSome operations of adding, deleting, modifying and querying the Yii2.0 advanced framework database, yii2.0 adding and deleting_PHP tutorial

Yii2.0 advanced framework database addition, deletion, modification and query operations, yii2.0 addition and deletion

yii2.0 framework is a relatively efficient framework developed by PHP, which brings together the author After a lot of hard work, the following uses users as examples to explain in detail some basic addition, deletion, modification and search operations in the use of yii2.

User::find()->all(); //Return all user data;
User::findOne($id); //Return a piece of data with primary key id=1;
User::find()->where(['name' => 'ttt'])->one(); //Return a piece of data from ['name' => 'ttt'];
User::find()->where(['name' => 'ttt'])->all(); //Return all data of ['name' => 'ttt'];
User::findBySql('SELECT * FROM user')->all(); //Use sql statement to query all data in the user table;
User::findBySql('SELECT * FROM user')->one(); This method uses sql statement to query a piece of data in the user table;
User::find()->andWhere(['sex' => 'Female', 'age' => '18'])->count('id'); //Statistics of the total number of people who meet the conditions Number of items;
User::find()->one(); //Return a piece of data;
User::find()->all(); //Return all data;
User::find()->count(); //Return the number of records;
User::find()->average(); //Return the average of the specified column;
User::find()->min(); //Return the minimum value of the specified column;
User::find()->max(); //Return the maximum value of the specified column;
User::find()->scalar(); //Return the query result of the first row and first column of the value;
User::find()->column(); //Return the value of the first column in the query result;
User::find()->exists(); //Returns a value indicating whether the data row contains the query result;

Yii2 group query, taking user as an example:

User::find()->addGroupBy('title')->all();Group according to title

1. Add (insert)

$model = new User();
$model->username = 'boy';
$model->insert();

Some simple operations of database deletion are still the same. I wrote the code above. If the style is confusing, I will attach a screenshot. Let’s use the user table as an example

User::deleteAll('name = young man'); Delete the data of name = young man;
User::findOne($id)->delete(); Delete the database whose primary key is the value of the $id variable;
User::deleteAll('age > :age AND sex = :sex', [':age' => '20', ':sex' => '1']); Delete data that meets the conditions;

Recommended reading: Learning the YII2 framework from scratch (1) Installing the Yii2 framework through Composer, I believe it will be helpful for everyone to learn yii2.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1072190.htmlTechArticle Some operations of Yii2.0 advanced framework database addition, deletion, modification and query, yii2.0 addition and deletion yii2.0 framework is developed by PHP A relatively efficient framework that combines a lot of efforts of the author. The following is provided by users...
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
Go语言如何实现数据库的增删改查操作?Go语言如何实现数据库的增删改查操作?Mar 27, 2024 pm 09:39 PM

Go语言是一种高效、简洁且易于学习的编程语言,因其在并发编程和网络编程方面的优势而备受开发者青睐。在实际开发中,数据库操作是不可或缺的一部分,本文将介绍如何使用Go语言实现数据库的增删改查操作。在Go语言中,我们通常使用第三方库来操作数据库,比如常用的sql包、gorm等。这里以sql包为例介绍如何实现数据库的增删改查操作。假设我们使用的是MySQL数据库。

XAMPP遇到PHP执行异常?问题排查技巧来帮忙XAMPP遇到PHP执行异常?问题排查技巧来帮忙Mar 12, 2024 pm 03:21 PM

技术领域中,XAMPP是一种常用的开发环境工具,它集成了Apache、MySQL、PHP和Perl等软件,可以帮助开发者快速搭建本地服务器环境。然而,有时候在使用XAMPP的过程中会遇到PHP执行异常的问题,这可能会给开发工作带来困扰。本文将分享一些问题排查的技巧,帮助读者解决XAMPP遇到PHP执行异常的情况。一、检查PHP错误日志首先,当XAMPP中的P

Java List接口实例演示:实现增删改查操作的数据操作Java List接口实例演示:实现增删改查操作的数据操作Dec 20, 2023 am 08:10 AM

JavaList接口是Java中常用的数据结构之一,可以方便地实现数据的增删改查操作。本文将通过一个示例来演示如何使用JavaList接口来实现数据的增删改查操作。首先,我们需要在代码中引入List接口的实现类,常见的有ArrayList和LinkedList。这两个类都实现了List接口,具有类似的功能但底层实现方式不同。ArrayList是基于数组实

MySql的CRUD操作:如何快速完成增、删、改、查MySql的CRUD操作:如何快速完成增、删、改、查Jun 15, 2023 pm 11:30 PM

MySql是一种关系型数据库管理系统,在Web应用程序中非常常用。在整个Web应用开发过程中,CRUD(增删改查)操作是必不可少的。这篇文章将介绍如何在MySql中快速完成这些操作。增加(Create)在MySql中,我们使用INSERTINTO语句来插入新的行。例如,我们有一个名为“users”的表格,包含“id”,“name”和“email”三列。现在

如何在Java中使用集合框架函数进行集合的增删改查操作如何在Java中使用集合框架函数进行集合的增删改查操作Oct 25, 2023 am 08:45 AM

如何在Java中使用集合框架函数进行集合的增删改查操作在Java中,集合框架(CollectionFramework)提供了一系列类和接口来方便我们进行集合操作。这些类和接口包含了丰富的函数,可以让我们更加方便地对集合进行增加、删除、修改和查找等操作。下面我们将详细介绍如何使用集合框架函数进行这些操作,并提供具体的代码示例。集合的增加操作在Java中,可以

XAMPP无法执行PHP问题解决方法大揭秘XAMPP无法执行PHP问题解决方法大揭秘Mar 12, 2024 pm 06:39 PM

XAMPP无法执行PHP问题解决方法大揭秘,需要具体代码示例在进行网站开发或者本地测试的过程中,XAMPP是一款非常常用的集成开发环境工具。然而,有时候在安装和配置XAMPP的过程中,可能会遇到XAMPP无法执行PHP的问题,导致无法正常运行网站。本文主要针对XAMPP无法执行PHP的问题进行解决方法的详细介绍,包括具体的代码示例,希望能够帮助到遇到类似问题

使用PHP和XAMPP创建本地Web服务器使用PHP和XAMPP创建本地Web服务器May 11, 2023 pm 05:19 PM

随着计算机技术的不断发展,Web服务器的使用已经成为了人们日常生活中不可或缺的一部分。对于程序员或者Web开发者来说,在开发和测试网站时,使用本地服务器是必不可少的。PHP是一种非常流行的用于Web开发的脚本语言,而XAMPP又是开发者们常用的服务器套件。在本文中,我们将介绍如何使用PHP和XAMPP创建本地Web服务器。一、下载和安装XAMPP在开始创建本

Vue技术开发中如何处理表单数据的增删改查操作Vue技术开发中如何处理表单数据的增删改查操作Oct 10, 2023 pm 02:49 PM

Vue技术开发中如何处理表单数据的增删改查操作在Vue技术开发中,表单数据的增删改查操作是非常常见的需求。本文将介绍如何使用Vue技术处理这些操作,并提供具体的代码示例。首先,我们需要创建一个Vue实例,并在data属性中定义一个空数组来存储表单数据。例如:newVue({data(){return{formData:[

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use