Home Backend Development PHP Tutorial Detailed explanation of thinkPHP database addition, deletion, modification and query operation method examples

Detailed explanation of thinkPHP database addition, deletion, modification and query operation method examples

Mar 24, 2017 pm 05:47 PM

The example in this article describes the operation method of add, delete, modify and query in thinkPHP database. Share it with everyone for your reference, the details are as follows:

thinkphp encapsulates the addition, deletion, modification and query of the database, making it more convenient to use, but not necessarily flexible.

It can be used in encapsulation. You need to write sql and you can execute sql.

1. Original

1

2

3

$Model = new Model(); // 实例化一个model对象 没有对应任何数据表

$insert_sql = "INSERT INTO sh_wxuser_collection (user_id,store_id,good_id,addtime) VALUES('".$user_id."','".$store_id."','".$good_id."','".$addtime."');";

$Model - >query($insert_sql);

Copy after login


2. Instantiated for the table, the original name of the table here is sh_wxuser_collection. sh is the prefix.

1

2

3

$model = M('wxuser_collection'); //自动省去sh

$insert_sql = "INSERT INTO __TABLE__ (user_id,store_id,good_id,addtime) VALUES('".$user_id."','".$store_id."','".$good_id."','".$addtime."');";

$model - >query($insert_sql);

Copy after login


Another way of writing, _ can be written in uppercase, and it will automatically be converted into_

1

2

3

$model = M('WxuserCollection'); //自动省去sh

$insert_sql = "INSERT INTO __TABLE__ (user_id,store_id,good_id,addtime) VALUES('".$user_id."','".$store_id."','".$good_id."','".$addtime."');";

$model - >query($insert_sql);

Copy after login


3. Encapsulated add statement

1

2

3

$model = M('WxuserCollection');

$data = array('user_id' = >$user_id, 'store_id' = >$store_id, 'good_id' = >$good_id, 'addtime' = >$addtime);

$model - >data($data) - >add();

Copy after login


4. Encapsulated modify edit statement

1

2

3

$model = M('WxuserCollection');

$data = array('user_id' = >$user_id, 'store_id' = >$store_id, 'good_id' = >$good_id, 'addtime' = >$addtime);

$model - >data($data) - >where('id=3') - >save();

Copy after login


is indeed very convenient, but convenient Besides, don’t forget the original SQL, the original SQL is the most interesting.

5.find()

1

2

3

4

$model = M('WxuserCollection');

$res1 = $model - >find(1);

$res2 = $model - >find(2);

$res3 = $model - >where('good_id=1105 AND store_id = 1 AND user_id = 20') - >find();

Copy after login


find gets a piece of data, find(1) gets the data with id 1, find(2) gets the id 2 data. The last one is to get the first piece of data with the condition where.

5.select()

1

2

$model = M('WxuserCollection');

$res = $model - >where('good_id=1105 AND store_id = 1 AND user_id = 20') - >field('id,good_id as good') - >select();

Copy after login


Get all data. The advantage here is that you don't have to consider the order of the SQL statements, you can just call the function as you like.

6.delete()

1

2

$model = M('WxuserCollection');

$res = $model - >where('id=1') - >delete(); // 成功返回1 失败返回0

Copy after login


Delete operation based on conditions


7.field ()

1

2

3

4

$model = M('WxuserCollection');

$res = $model - >field('id,good_id as good') - >select();

$res = $model - >field(array('id', 'good_id' = >'good')) - >select();

$res = $model - >field('id', true) - >select();

Copy after login


There are two methods: string and array. The third one means to get all fields except processing id.

8.order()

1

2

3

4

5

$model = M('WxuserCollection');

$res = $model - >order('id desc') - >select();

$res = $model - >order('id asc') - >select();

$res = $model - >order(array('id' = >'desc')) - >select();

$res = $model - >order(array('id')) - >select();

Copy after login


There are two methods: string and array, the default is asc.

9.join()

1

2

3

$Model->join(' work ON artist.id = work.artist_id')->join('card ON artist.card_id = card.id')->select();

$Model->join('RIGHT JOIN work ON artist.id = work.artist_id')->select();

$Model->join(array(' work ON artist.id = work.artist_id','card ON artist.card_id = card.id'))->select();

Copy after login


The LEFT JOIN method is used by default. If you need to use other JOIN methods, you can change it to the second one,

If the parameters of the join method are arrays, the join method can only be used once, and it cannot be mixed with string methods.

10.setInc()

1

2

3

4

5

$User = M("User"); // 实例化User对象

$User->where('id=5')->setInc('score',3); // 用户的积分加3

$User->where('id=5')->setInc('score'); // 用户的积分加1

$User->where('id=5')->setDec('score',5); // 用户的积分减5

$User->where('id=5')->setDec('score'); // 用户的积分减1

Copy after login


11.getField()

Get a field value

1

2

3

$User = M("User"); // 实例化User对象

// 获取ID为3的用户的昵称

$nickname = $User->where('id=3')->getField('nickname');

Copy after login


The nickname returned is a string result. That is, even if there are multiple fields that meet the condition, only one result will be returned.

Get a certain field column

If you want to return a field column that meets the requirements (multiple results), you can use:

1

2

3

$User = M("User"); // 实例化User对象

// 获取status为1的用户的昵称列表

$nickname = $User->where('status=1')->getField('nickname',true);

Copy after login


The second parameter is passed in true, and the returned nickname is an array containing a list of all nicknames that meet the conditions.

If you need to limit the number of returned results, you can use:

1

$nickname = $User->where('status=1')->getField('nickname',8);

Copy after login


Get a list of 2 fields

1

2

3

$User = M("User"); // 实例化User对象

 // 获取status为1的用户的昵称列表

$nickname = $User->where('status=1')->getField('id,nickname');

Copy after login


If the getField method passes in multiple field names, an associative array will be returned by default, with the value of the first field as the index (so the first field should be chosen as non-duplicate as possible).

Get multiple field lists

1

$result = $User->where('status=1')->getField('id,account,nickname');

Copy after login


If more than 2 field names are passed in, a two-dimensional array will be returned (similar to the return of the select method value, the difference is that the key name of the index is the value of the first field in the two-dimensional array)

Comprehensive use case

1

2

3

4

$where = array('a.store_id' => $this->store_id, 'a.user_id' => $this->user_id);

$collects = $this->collectModel->table("sh_wxuser_collection a")->field(array('b.name','b.price','b.oprice','b.logoimg','a.goods_id'))->limit($start, $offset)->order('a.addtime DESC')->where($where)->join(' sh_goods b ON a.goods_id = b.id')->select();// 获取当前页的记录

echo M()->getLastSql(); // 调试sql语句用

$count = $this->collectModel->table("sh_wxuser_collection a")->where($where)->count(); // 获取总的记录数

Copy after login


Here due to the combination of the two There is a table, so the table method is used to redefine the table name and prefix the corresponding conditions and parameters. a. Or b.

The field field is either a string or an array.

1

field('b.name', 'b.price', 'b.oprice', 'b.logoimg', 'a.goods_id') // 错误

Copy after login

I wrote this before, and it was a big problem.

If you use a framework, you cannot write sql flexibly. However, having a deep understanding of SQL is also conducive to using the framework flexibly.

Method for debugging sql statements.

1

echo M()->getLastSql();

Copy after login

I hope this article will be helpful to everyone’s PHP programming based on the ThinkPHP framework.

For more thinkPHP database addition, deletion, modification and query operation method examples and detailed explanations, please pay attention to the PHP Chinese website!

Related articles:

Ask for advice on how to write your own functions and classes in thinkphp, where to place them, and how to call them

thinkPHP is simple Sample code for calling functions and class library methods

ThinkPHP3.2 framework uses addAll() to batch insert data method sharing

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

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 Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

How does session hijacking work and how can you mitigate it in PHP? How does session hijacking work and how can you mitigate it in PHP? Apr 06, 2025 am 12:02 AM

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

See all articles