In applications, it is strongly recommended that you clearly indicate the columns that you want to select and avoid * , but if you use these queries for yourself, it makes sense to use it:
SELECT table_name.*
Note that you can also omit the qualification table name from a column if the column name is unique. That is, Customers.CustomerName can simply be CustomerName if Orders also does not have a CustomerName column. In the same vein, Orders.OrderID can only be OrderID .
source share