Sundaresan Anandansundaresan.hashnode.dev·Sep 29, 2024DB Indexing: In-depth look into database indexing and tutorial for implement.What is an indexing? Indexing is a technique used by SQL databases to exact the data fasters. Means our DB will maintain a sub-table for our records and utilize that table to identify the expected data. Sounds confusing😕 let’s take look into the rea...SQL
Amrutha Damruthadronamraju.hashnode.dev·May 12, 2024SQL IndexesIndexes in SQL are data structures that speed up searching and sorting in tables by storing references to specific columns. They allow databases to quickly locate relevant data when executing queries, avoiding the need to scan the entire table. The C...DevOps Blogssql index