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
FROMclause is required in everySELECTquery. - You can specify multiple tables in the
FROMclause for joins.