sql >> Base de Datos >  >> RDS >> Mysql

MySQL múltiples columnas en la cláusula IN

Para hacer un uso efectivo del índice, puede reescribir el predicado IN

(x0, y0, x1, y1) IN ((4, 3, 5, 6),(9, 3, 2, 1))

Me gusta esto:

(  ( x0 = 4 AND y0 = 3 AND x1 = 5 AND y1 = 6 ) 
OR ( x0 = 9 AND y0 = 3 AND x1 = 2 AND y1 = 1 )
)