I've got a table that represents the depth charts of football teams. The table has the following columns:<br><br>team, type, pos, depth, player_id, status<br><br>The only thing of real interest is 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 ...