{{ selectedTable.view ? "View" : "Table" }}: {{ selectedTable.name }}
Index Size : {{ +stats.index_length | round }} Mb Data Size : {{ +stats.data_length | round }} Mb
Copy Name
New Name

				
speed Performance Tips • Calculate to most used column and index it (RAM is ~100x speeder than disk)
• Specify only needed columns (avoid wildcard)
• Use views for pre-calculate queries
• Cache almost static data into your backend, Redis or even frontend
• Check slow queries and profile them to know why it take time
• Use an optimized database for your need (eg. elasticsearch for fulltext search)
• Use the AI assistant for more advanced optimizations for a query performance or table structure