Spencer P. answered 04/14/19
3 Years Experience in SQL
If you actually want to view every column, then `SELECT *` is perfectly OK. It is usually discouraged for the times you do not to need to view every column. Generally, selecting fewer columns is less 'expensive' than many columns. Using `SELECT *` can often be a useful thing when you are attempting to get a sense of a table. As a warning, you will want to limit the number of rows you view when you do that though.