It is generally better to type out all the column names anyway for clarity, consistency, and error-checking (in case the table structure changes), and if you do not actually need every column in the table(s) being queried it reduces the amount of data to be exchanged between your application and the DBMS.
Anyway, if you do want all columns from a given table, you can use table_name. in the column list (or table_alias.).