88
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:
Example2:
Select a specific column from the “Employees” table.
Output:
Next Topic#