Javatpoint Logo
Javatpoint Logo

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 1

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".

MySQL from clause 2

Execute the following query:

MySQL from clause 3

MySQL FROM Clause: Retrieve data from two tables using outer join

Execute the following query:

MySQL from clause 4




Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA