📜  使用索引条件而不是索引 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:57.647000             🧑  作者: Mango

代码示例1
Using index condition : where condition contains indexed and non-indexed column and the optimizer will first resolve the indexed column and will look for the rows in the table for the other condition (index push down)
Using where; Using index : 'Using index' meaning not doing the scan of entire table. '