SQL Server Transact Basic to Expert - Select Every Column vs Every Row

This blog shows how to select every column with every row mapped using a simple query

Syntax:

SELECT *
FROM Table

* indicated the collective information of all the columns in the table

Example:
Select * from EmpTable