I\'ve heard that SELECT * is generally bad practice to use when writing SQL commands because it is more efficient to SELECT columns you specificall
SELECT *
SELECT
Specifying the column list is usually the best option because your application won't be affected if someone adds/inserts a column to the table.