Index Management
💡 This guide explains how to create indexes to improve data query performance.
Overview
Indexes speed up queries on specific columns. Creating indexes on columns that are frequently searched or filtered makes data retrieval faster.
Viewing the Index List
Click Database → select a table → click the Indexes tab.
View currently created indexes.

Creating an Index
Click the Add Index button in the Indexes tab.
Enter the following information.
Index Name
Index identifier
Target Columns
Columns to index (compound indexes supported)
Unique
Whether to create a UNIQUE index
Click Create.

Request in natural language from your AI tool.
💡 Compound indexes combine multiple columns into a single index. Grouping columns that are frequently queried together into one index is effective.
Deleting an Index
Click the Delete icon on the index you want to remove.
The index is deleted after confirmation.
⚠️ Deleting an index may degrade query performance on that column. Data is not affected.
Index Recommendations
Columns frequently used in WHERE clauses
✅
Columns frequently used in ORDER BY
✅
Columns that need a unique constraint
✅
Columns where nearly all values are identical
❌
Columns that are frequently updated
△ (may degrade write performance)
Next Steps
Dashboard — View project statistics
Filtering — Filter data via the REST API
Performance Optimization — General performance guide
Last updated