How to optimize the sql of select something in (X,X,X) #13989
Unanswered
13533307446
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hello, @13533307446 Could you consider using 5.0.0 release fixing this issue? @strongduanmu Which version of 4.x series do we have this one? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For version 4.1.1, shardingsphere not implements the optimizing sql of "SELECT * FROM t_order WHERE order_id IN (1, 2, 3);".
How to do it? I want to optimize that sql to
"SELECT * FROM t_order WHERE order_id IN (1, 3);"
"SELECT * FROM t_order WHERE order_id IN (2);".
Have any suggests or references?
Beta Was this translation helpful? Give feedback.
All reactions