How to Select All Columns from MySQL Table

Notes:

How to select all columns from a table in MySQL:
- To select all columns from a table; we take help of select command and star (*) symbol.
- * symbol indicates all columns.

Basic Syntax:
select * from tablename;

Ex:
select * from tbl_faculty;

Interview Questions: