Home » MariaDB From Clause

MariaDB From Clause

by Online Tutorials Library

MariaDB FROM Clause

MariaDB FROM Clause is used to fetch data from a table. It is also used to join tables which you will study later.

Syntax:

Example:

Let’s retrieve all employees from the table “Employees”.

Output:

Mariadb From clause 1

Example2:

Select a specific column from the “Employees” table.

Output:

Mariadb From clause 2

Next Topic#

You may also like