Code for adding, deleting, modifying, and querying databases in thinkphp3.2.3 and adding, deleting, and deleting databases in thinkphp3.2.3

Source: Internet
Author: User

Code for adding, deleting, modifying, and querying databases in thinkphp3.2.3 and adding, deleting, and deleting databases in thinkphp3.2.3

Framework thinkphp

Version: 3.2.3

Content: Database Operations

1. Search for one piece of data from multiple tables

M ('A')-> join ("Table B on Table B. id = Table a. id")-> where ('condition')-> find ();

2. Search for a piece of data

M ('a table')-> where ('condition')-> find ();

3. query all data in multiple tables

M ('a table')-> join ("Table B on Table B. id = Table a. id")-> where ('condition')-> select ();

4. query all data

M ('a table')-> where ('condition')-> select ();

5. Add a piece of data

M ('a table')-> add ($ data );

6. delete a piece of data

M ('a table')-> where ('condition')-> delete ($ data );

7. modify a data record

M ('a table')-> where ('Id = 5')-> save ();

The above is all the content of the thinkphp3.2.3 version of the database added, deleted, modified, and queried for everyone. I hope it will help you a lot ~

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.