Home > PHP Framework > ThinkPHP > body text

What is the usage of execute in thinkphp

WBOY
Release: 2022-02-18 15:47:24
Original
3293 people have browsed it

In thinkphp, the execute() method can directly enter SQL statements in the parameters. This method is used to execute SQL statements such as insert or update. The returned result is the number of records affected by the SQL statement. The syntax is "$ model ->execute(SQL statement)".

What is the usage of execute in thinkphp

The operating environment of this article: Windows 10 system, ThinkPHP version 5, Dell G3 computer.

What is the usage of execute in thinkphp

Both the execute() and query() methods in ThinkPHP can directly enter SQL statements in the parameters. But the difference is that execute() is usually used to execute SQL statements such as insert or update, while query is often used to execute statements such as select.

The execute() method will return the number of affected records. If the SQL select statement is executed, the returned result will be the total number of records in the table:

The code is as follows:

$model = M( "MyTable" );
$result = $model ->execute( 'update MyTable set name=aaa where id=11'); //将返回总行数
Copy after login
# The ##query() method will return the data set:

The code is as follows:

$model = M( "MyTable" );
$result = $model ->query( 'select * from  MyTable' ); //将返回array()
Copy after login
Recommended learning: "

PHP Video Tutorial"

The above is the detailed content of What is the usage of execute in thinkphp. For more information, please follow other related articles on the PHP Chinese website!

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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template