FROM Clause

Purpose: The FROM clause identifies the table(s) from which to fetch data.Syntax:

FROM table_name;

Example:

SELECT * FROM departments;

Explanation: This selects all columns from the departments table. You can also join multiple tables here.


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *