Home > database >  MySQL composite index
MySQL composite index

Time:11-15

To establish a composite index a, b
SQL statement 1: select * from table from a> 4 and b<9
SQL statement 2: select * from table from b<9 and a> 4

The query efficiency of the SQL statement is the same?
  • Related