Join usage analysis of CI frame database query _php example

Source: Internet
Author: User
Tags codeigniter zend framework

This article illustrates the join usage of the CI Framework database query. Share to everyone for your reference, specific as follows:

Use each ID in table A to query the information for this ID in the People table. Statement as follows:

$this->db->from (' A ');
$this->db->join (' B ', ' sites.id = b.ID ');

Use each ID in table A to query the information in table B for this ID.

Note the SQL Conventions, and if a column name is duplicated in two tables, you need to precede the column name with a table name and a "." Resolution So sites.id at the location table, the table that contains the ID is sites. When making a SQL multiple table query, it is best to identify the column names uniquely so that you can avoid ambiguity or make yourself understood.

such as: You execute the following statement

$this->db->select (' * ');
$this->db->from (' blogs ');
$this->db->join (' comments ', ' comments.id = Blogs.id ');
$query = $this->db->get ();

Equivalent to executing this SQL statement

SELECT * FROM blogs JOIN comments on comments.id = Blogs.id

If you want to use multiple connections in a query, you can call this function multiple times.

If you need to specify the type of JOIN, you can specify it by using the third argument of this function. Optional options include: left, right, outer, inner, left outer, and right outer.

$this->db->join (' comments ', ' comments.id = Blogs.id ', ' left ');
Build: Left JOIN comments on comments.id = Blogs.id

More interested in CodeIgniter related content readers can view the site topics: "CodeIgniter Introductory Course", "CI (CodeIgniter) Framework Advanced Course", "PHP Excellent Development Framework Summary", "thinkphp Introductory Course", " Thinkphp Common Methods Summary, "Zend Framework Introduction Course", "PHP object-oriented Programming Introduction Course", "Php+mysql Database operation Introduction Tutorial" and "PHP common database Operation Skills Summary"

I hope this article will help you with the PHP program design based on CodeIgniter 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.