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.
Leave a Reply