Reputation: 91
I want to boost up my database speed each time when new query hit to database table. Can anybody help me out with how indexing works in phpMyAdmin & how to do it??
Upvotes: 9
Views: 28646
Reputation: 312
Set the index from PHPMYADMIN.
I marked the index button in yellow.
Upvotes: 3
Reputation: 2852
you can use create index statement:
create index idx_username on users(username)
what actually means: "i want to create index called idx_username on table users on column username"
Upvotes: 6
Reputation: 1442
Upvotes: 11