You type SELECT *, hit Run, and wait. Sometimes the result pops up instantly and sometimes the spinning wheel turns for 20 minutes until your connection times out. You neither changed the size of the ...
A common SQL habit is to use SELECT * on a query, because it’s tedious to list all the columns you need. Plus, sometimes those columns may change over time, so why not just do things the easy way? But ...