Thinkphp Common methods for multi-table joint query _php Example

Source: Internet
Author: User

The table () method or the Join method can be used in thinkphp associated queries (that is, a multiple table union query), as shown in the following example:

1. Native Query Example:

Copy Code code as follows:
$Model = new Model ();
$sql = ' Select A.id,a.title,b.content from Think_test1 as a, think_test2 as B where a.id=b.id '. $map. ' ORDER by a.ID '. $so Rt. ' Limit '. $p->firstrow ', '. $p->listrows;
$voList = $Model->query ($sql);

2, Join () Method Example:

Copy Code code as follows:
$user = new Model (' user ');
$list = $user->join (' Right join user_profile on user_stats.id = User_profile.typeid ');

3, table () Method Example:

Copy Code code as follows:
$list = $user->table (' User_status stats, user_profile profile ')->where (' stats.id = Profile.typeid ')->field (' Stats.id as ID, stats.display as display, profile.title as title,profile.content as content ')->order (' stats.id desc ')- >select ();

More interested in thinkphp related content readers can view the site topics: "thinkphp Introductory Course", "thinkphp Template Operation Skills Summary", "thinkphp Common Methods Summary", "Smarty Template Introductory Course" and "PHP template technology Summary."

I hope this article will help you with the PHP program design based on thinkphp framework.

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.