Hello,
In my form, I used to search by name. So I've created a index to the name column. But I wonder if I have to create my index right after creating the table or after I've inserted datas into it ?
or
I'm just lost ! :ehh:
Thank you!
In my form, I used to search by name. So I've created a index to the name column. But I wonder if I have to create my index right after creating the table or after I've inserted datas into it ?
Code:
CREATE TABLE -> INSERT INTO -> ... -> INSERT INTO -> CREATE INDEX
Code:
CREATE TABLE -> CREATE INDEX -> INSERT INTO ...
Thank you!