Joining Table using Left Join PHP/MySQL
Submitted by nurhodelta_17 on Saturday, August 19, 2017 - 19:30.
Language
This tutorial will show you how to join 2 tables using left join in PHP/MySQLi. Joining tables is used to make 2 or more tables work as 1. In this tutorial, I will give you an idea how left join works and how to join to tables.
Notice that we have created two tables in our database namely "user" and "user_details" both having a common column named "userid".
Creating our Database
First, we're going to create a database that contains the user data. 1. Open phpMyAdmin. 2. Click databases, create a database and name it as "join_tutorial". 3. After creating a database, click the SQL and paste the below code. See image below for detailed instruction.- CREATE TABLE `user` (
- `userid` INT(11) NOT NULL AUTO_INCREMENT,
- `username` VARCHAR(30) NOT NULL,
- `password` VARCHAR(30) NOT NULL,
- PRIMARY KEY (`userid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- CREATE TABLE `user_details` (
- `userid` INT(11) NOT NULL AUTO_INCREMENT,
- `firstname` VARCHAR(30) NOT NULL,
- `lastname` VARCHAR(30) NOT NULL,
- PRIMARY KEY (`userid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Inserting Data into our Tables
Next, we insert data into our tables. Make sure that the "userid" in one table have the same value in other table. 1. Click our database "join_tutorial". 2. Click SQL and paste the below code.- INSERT INTO `user` (`username`, `password`) VALUES
- ('user1', 'user1'),
- ('user2', 'user2');
- INSERT INTO `user_details` (`firstname`, `lastname`) VALUES
- ('neovic', 'devierte'),
- ('lee', 'ann');
Creating our Connection
Next step is to create a database connection and save it as "conn.php". This file will serve as our bridge between our page and our database. To create the file, open your HTML code editor and paste the code below after the tag.- <?php
- // Check connection
- {
- }
- ?>
Creating our Output Table
Lastly, we create a table that will output our query using LEFT JOIN. To create the table, open your HTML code editor and paste the code below after the tag.- <!DOCTYPE html>
- <html>
- <head>
- </head>
- <body>
- <table border="1">
- <thead>
- </thead>
- <tbody>
- <?php
- include('conn.php');
- $query=mysqli_query($conn,"select * from `user` left join user_details on user_details.userid=user.userid");
- while($row=mysqli_fetch_array($query)){
- ?>
- <tr>
- </tr>
- <?php
- }
- ?>
- </tbody>
- </table>
- </body>
- </html>
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Add new comment
- 816 views