I could swear that I've seen discussions on this, but I can't seem to find them...<BR><BR>I've got a stored proc that I wrote in SQL server that builds it's data from two different databases (on that ...
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 ...