Creating Optimized Azure Sql Table For Querying
Assuming I have a table in Azure SQL DB with a million rows. What are the ways I can optimize the table for performing queries using WHERE clause. Column 1 is for the id which is t
Solution 1:
Look into indexes. If you are going to search by address, add an index on address fields. If most searches are by zip code, add an index on that field. For more info on indexes have a look at this document Index Table
Post a Comment for "Creating Optimized Azure Sql Table For Querying"