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
SELECT * is necessary if one wants to obtain metadata such as the number of columns.