FROM in MYSQL by R4R Team

MYSQL FROM CLAUSE:
-The MySQL FROM Clause is used to select some records from a table.
-It can also be used to retrieve records from multiple tables using JOIN condition.

Syntax:
SELECT *FROM table_name;

SELECT * FROM employee;

emp_id emp_name department emp_salary
1 Aman D1 34000
2 Ram D2 43000
3 Ramesh D3 20000
4 John D4 65000
5 Sita D5 10000



Leave a Comment: