Differences between execute and query methods in ThinkPHP _ php instance

Source: Internet
Author: User
When ThinkPHP is a beginner, many people do not understand the differences between execute () and query () methods. In this article, we will analyze the differences between them. If you need them, refer to ThinkPHP beginners, many people do not understand the differences between the execute () and query () methods. This article analyzes the differences between them.
As we all know, the execute () and query () methods in ThinkPHP can both directly input SQL statements in parameters. But the difference is that Execute () is usually used to execute SQL statements such as insert or update., And Query is commonly used to execute select statements..
The execute () method returns the number of affected recordsIf you execute the select statement of SQL, the returned results will be the total number of records of the table:

The Code is as follows:

$ Model = M ("MyTable ");
$ Result = $ model-> execute ('Update MyTable set name = aaa where id = 11'); // The total number of rows returned


The query () method returns a dataset.:

The Code is as follows:

$ Model = M ("MyTable ");
$ Result = $ model-> query ('select * from mytable'); // returns array ()

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.