When we began learning SQL, almost everyone of us started by using the wildcard operator: "SELECT * ..." It is incredibly convenient. It tells the database engine to fetch every single column from the particular table, and we don't have to type out every column name individually.
While "SELECT * .." is fine for quick troubleshooting or ad-hoc debugging on ...