Sample table (say Employee) structure
Column NameDatatypeIDINTF_NameSTRINGL_NameSTRINGPhoneSTRINGAddressSTRING
Project all the columns
Use wild card * to project all the columns. e.g.
Select * from Employee
Project selected columns (say ID, Name)
Use name of columns in the projection list. e...