scrapbook.qujck.com
Tips for Sql query performance
The following are a list of good practices I follow when querying large sets of data. SELECT * Avoid selecting all columns from a table. Queries should explicitly list each column it requires Chang…