我到处搜索,但没有找到任何答案,
例如,我的 where 子句中有 8 列,如下示例查询:
select col1,col2,col3,col4,col5,col6,col7,col8 where col1 = 1 and col2 = 1 and col3 = 1 and col4 = 'sample' and col5 like '%sample%' and col6 = 1 and col7 like '%sample%'and col8 = '1'
我已经在我的电脑上测试过了,速度还不错,但我不知道这个查询在其他规格较低的电脑上是否会很快,因为我使用的电脑规格很高。我没有其他电脑来测试这种查询。
我表中的某些列也没有索引,因为它不适用。
先感谢您