FROM Clause
The FROM
clause specifies the table or tables from which to retrieve data. It is an essential part of the SELECT
statement.
Example: Using FROM Clause
SELECT * FROM FreedomFighters;
Output:
Returns all columns from the FreedomFighters
table.
Notes
- The
FROM
clause is required in everySELECT
query. - You can specify multiple tables in the
FROM
clause for joins.