C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
SQL JOINAs the name shows, JOIN means to combine something. In case of SQL, JOIN means "to combine two or more tables". The SQL JOIN clause takes records from two or more tables in a database and combines it together. ANSI standard SQL defines five types of JOIN :
In the process of joining, rows of both tables are combined in a single table. Why SQL JOIN is used?If you want to access more than one table through a select statement. If you want to combine two or more table then SQL JOIN statement is used .it combines rows of that tables in one table and one can retrieve the information by a SELECT statement. The joining of two or more tables is based on common field between them. SQL INNER JOIN also known as simple join is the most common type of join. How to use SQL join or SQL Inner Join?Let an example to deploy SQL JOIN process: 1.Staff table
2.Payment table
So if you follow this JOIN statement to join these two tables ? SELECT Staff_ID, Staff_NAME, Staff_AGE, AMOUNT FROM STAFF s, PAYMENT p WHERE s.ID =p.STAFF_ID; This will produce the result like this:
Next TopicSQL Outer Join
|