69
MySQL FROM Clause
The MySQL FROM Clause is used to select some records from a table. It can also be used to retrieve records from multiple tables using JOIN condition.
Syntax:
Parameters
table1 and table2: specify tables used in the MySQL statement. The two tables are joined based on table1.column1 = table2.column1.
Note:
- If you are using the FROM clause in a MySQL statement then at least one table must have been selected.
- If you are using two or more tables in the MySQL FROM clause, these tables are generally joined using INNER or OUTER joins.
MySQL FROM Clause: Retrieve data from one table
The following query specifies how to retrieve data from a single table.
Use the following Query:
MySQL FROM Clause: Retrieve data from two tables with inner join
Let’s take an example to retrieve data from two tables using INNER JOIN.
Here, we have two tables “officers” and “students”.
Execute the following query:
MySQL FROM Clause: Retrieve data from two tables using outer join
Execute the following query:
Next TopicMySQL ORDER BY Clause