Published
- 1 min read
how to create index mysql
The solution for this is noted below
how to create index mysql
Solution
# index_name will identify your index for future reference
CREATE INDEX index_name ON table_name (column_name);
Try other methods by searching on the site. That is if this doesn’t work