skip to Main Content

mysql index selection on large table

I have a couple of tables that looks like this: CREATE TABLE Entities ( id INT NOT NULL AUTO_INCREMENT, name VARCHAR(45) NOT NULL, client_id INT NOT NULL, display_name VARCHAR(45), PRIMARY KEY (id) ) CREATE TABLE Statuses ( id INT NOT…

VIEW QUESTION
Back To Top
Search