PHP and MySQL Problem

Status
Not open for further replies.
might want to ad indexes

If it dosen't already exist you may want to add an index on the ID column in the database. This will help MySQL find the correct record to delete faster.

something like:
CREATE INDEX id_index ON Horizon.Products (id);
 


Status
Not open for further replies.