×

SQL FULL JOIN

In this section, we will help you understand the concept of the SQL FULL Join clause with a few examples.

The SQL FULL Join query is executed to display the integrated results of the left join and right join.

The SQL FULL Join query display all the data, and the NULL value is returned at the missing place of the record.

The syntax of the SQL FULL Join is as follows:

SELECT table1.column_name1, table1.columnname2, table1.column_name3, table1.columnname4, table2.column_name1, table2.column_name2, table2.column_name3, table2.column_name4 FROM table1 FULL JOIN table2;

Let’s understand the SQL FULL Join with the help of examples.

Assume the following table, which has certain data.

Table Name 1- D_Students

Student_IdStudent_NameFirst_ SemesterSecond_ SemesterThird_ SemesterFourth_ SemesterFifth_ SemesterSixth_ SemesterTotalDepartment_ Id
202111Vineeta Sharma938885859592905
202112Vaibhav Lokhande859092808582862
202113Yash Dhull908894878590893
202114Sonali Patole959092889290914
202115Amit Sonar858382869284851
202116Meena Mishra787580748577783
202117Mahesh Kumbhar758375788076825
202118Sakshi Patil807874788077832
202119Sopan Bhore706875758080802
202220Prajwal Lokhande808585757880864
202221Anuja Wanare858886828485854
202222Venkatesh Iyer908987909291903
202223Anushka Sen707571748078801
202224Aakash Jain807572748580832
202225Akshay Agarwal858378889082893
202226Shwetali Bhagwat908385889080861
202227Priya Wagh808385808285874
202228Saurabh Sangale858380908484895
202229Manthan Koli857584788280862
202230Mayur Jain808887909290881

Table Name 2- Department

Department_IdDepartment_Name
1Computer Engineering
2Information Technology
3Mechanical Engineering
4Automobile Engineering
5Civil Engineering
6Electrical Engineering

Example 1: Write a query on the D_students and Department table where the second_semester percentage is 78.

SELECT Student_Id, Student_Name, First_Semester, Second_Semester, Third_Semester, Fourth_Semester, Fifth_Semester, Sixth_Semester, Total, Department_Name FROM D_Students FULL JOIN Department WHERE Second_Semester = 78;  

The above SQL FULL Join query joins the D_Students table and department, and displaying the records where the second_semester percentage is 78.

The output of the above example is as follows:

Student_IdStudent_NameFirst_ SemesterSecond_ SemesterThird_ SemesterFourth_ SemesterFifth_ SemesterSixth_ SemesterTotalDepartment_Name
202218Sakshi Patil80787478807783Computer Engineering
202218Sakshi Patil80787478807783Information Technology
202218Sakshi Patil80787478807783Mechanical Engineering
202218Sakshi Patil80787478807783Automobile Engineering
202218Sakshi Patil80787478807783Civil Engineering
202218Sakshi Patil80787478807783Electrical Engineering
SQL FULL JOIN

Example 2: Write a query on the D_students and Department table where Student_Name start with the letter ‘A’.

SELECT Student_Id, Student_Name, First_Semester, Second_Semester, Third_Semester, Fourth_Semester, Fifth_Semester, Sixth_Semester, Total, Department_Name FROM Department FULL JOIN D_Students WHERE Student_Name LIKE 'A%';

The above SQL FULL Join query joins the D_Students table and department, and displaying the records where the Student_Name is start with the letter 'A'.

The output of the above example is as follows:

Student_IdStudent_NameFirst_ SemesterSecond_ SemesterThird_ SemesterFourth_ SemesterFifth_ SemesterSixth_ SemesterTotalDepartment_Name
202115Amit Sonar85838286928485Computer Engineering
202115Amit Sonar85838286928485Information Technology
202115Amit Sonar85838286928485Mechanical Engineering
202115Amit Sonar85838286928485Automobile Engineering
202115Amit Sonar85838286928485Civil Engineering
202115Amit Sonar85838286928485Electrical Engineering
202221Anuja Wanare85888682848585Computer Engineering
202221Anuja Wanare85888682848585Information Technology
202221Anuja Wanare85888682848585Mechanical Engineering
202221Anuja Wanare85888682848585Automobile Engineering
202221Anuja Wanare85888682848585Civil Engineering
202221Anuja Wanare85888682848585Electrical Engineering
202223Anushka Sen70757174807880Computer Engineering
202223Anushka Sen70757174807880Information Technology
202223Anushka Sen70757174807880Mechanical Engineering
202223Anushka Sen70757174807880Automobile Engineering
202223Anushka Sen70757174807880Civil Engineering
202223Anushka Sen70757174807880Electrical Engineering
202224Aakash Jain80757274858083Computer Engineering
202224Aakash Jain80757274858083Information Technology
202224Aakash Jain80757274858083Mechanical Engineering
202224Aakash Jain80757274858083Automobile Engineering
202224Aakash Jain80757274858083Civil Engineering
202224Aakash Jain80757274858083Electrical Engineering
202225Akshay Agarwal85837888908289Computer Engineering
202225Akshay Agarwal85837888908289Information Technology
202225Akshay Agarwal85837888908289Mechanical Engineering
202225Akshay Agarwal85837888908289Automobile Engineering
202225Akshay Agarwal85837888908289Civil Engineering
202225Akshay Agarwal85837888908289Electrical Engineering
SQL FULL JOIN

Related Topics

SQL Queries

In a database, queries are used to request the result set of data from the table or action on the records. A Query can answer your simple or complicated question, perform...

5 minutes read.

Types of SQL Commands

The Structured Query Language is used to deal with structured data. The data which are stored in the form of tables are structured data. These SQL commands store records or...

10 minutes read.

SQL Wildcards

SQL WILDCARD CHARACTERS: SQL wild card character is used to substitute zero or more characters of a string. These characters are used with the “LIKE” operator. Wild Card Characters in SQL: %_[]^- “%” : It is...

3 minutes read.

SQL FULL JOIN

In this section, we will help you understand the concept of the SQL FULL Join clause with a few examples. The SQL FULL Join query is executed to display the integrated...

3 minutes read.

Grant Command in SQL

What is DCL (Data Control Language)? Data Control Language (DCL) is a computer programming language with syntax intended to manage access to data kept in databases. It is a part of...

3 minutes read.

SQL Between Operator

SQL Between operator is a logical operator in the Structured Query Language. The Between operator is used to retrieve data within the range specified in the condition in the query. The...

7 minutes read.

SQL UNION ALL Operator

This page has all the information about UNION ALL operator, which is used to join all the values from the SELECT queries. Similar records were not considered in the result in...

3 minutes read.

SQL Right Join

The SQL Right Join query displays all the table records and similar records from the left table. The query display zero records if it doesn’t find any similar records. If...

4 minutes read.

SQL Formatter

As a beginner, one does not focus much on Formatting the queries while writing their code. This leads to a great confusion while referring the code in future. For a...

5 minutes read.

How to delete a row in SQL

Introduction To delete or remove the unused/unwanted rows from a table, DELETE command is used in SQL.DELETE command removes the entire record from a table.The DELETE statement can delete one or...

6 minutes read.

SQL Data Definition Language

Data definition language directly effects on the structure/schema of the database. CREATE, ALTER, DROP are the commands of DDL.CREATE: Creates new database, table, or view of table.ALTER: Modifies the database or...

3 minutes read.

WHERE Clause vs HAVING Clause

The WHERE Clause and HAVING clause filter the records in the Structured Query Language queries. The main difference between the WHERE clause and the HAVING clause is the WHERE clause...

5 minutes read.

SQL UPDATE

SQL UPDATE The SQL UPDATE statement is utilized to update and modify the records present into a database. It is used to change the already existing records stored in the tables...

3 minutes read.

SQL INSERT INTO Values

This article will help you in getting a better understanding of a very important SQL INSERT INTO VALUES function. INSERT INTO statement is used to insert or add a new record...

4 minutes read.

Check Constraint in SQL

The Check Constraint in SQL is the rule or set of rules used to limit the data range that can be entered in a table column. Check constraint is used...

8 minutes read.

SQL INSERT INTO Statement

SQL INSERT INTO statement adds data to the newly created tables or existing tables. We can add single records or multiple records in a table by using this query. There are...

3 minutes read.

SQL Arithmetic Operators

This page contains all the information, learn about SQL Arithmetic Operators concept in the SQL table with the help of examples. The Arithmetic Operators is used to perform mathematical calculations on...

5 minutes read.

SQL SET Keyword

This article will provide you a good understanding of the Set keyword in Structured Query Language. What is the SET keyword? The SET keyword is used to specify values for the variables....

3 minutes read.

SQL IN vs SQL EXISTS

SQL IN vs SQL EXISTS This article discusses in detail about the IN and the EXISTS operators in SQL. It is a common question between developers that what is the difference...

3 minutes read.

SQL INTERSECT

SQL intersect operator is used to combine two or more SELECT statements, but it only displays the data similar to the SELECT statement. The syntax for the INTERSECT operation: SELECT COLUMN_NAME1, COLUMN_NAME2,...

3 minutes read.