我想通过 MySQL 中的两个字段搜索表:
select * from table where
90 < x and x < 100 and
50 < y and y < 60
如果优化,这个搜索的效率是多少?O(log(n))?
它会实现什么类型的索引和算法?(如果使用标准 B-tree 或哈希映射,我是否正确地说它将是 O(n.log(n))?)
谢谢
我想通过 MySQL 中的两个字段搜索表:
select * from table where
90 < x and x < 100 and
50 < y and y < 60
如果优化,这个搜索的效率是多少?O(log(n))?
它会实现什么类型的索引和算法?(如果使用标准 B-tree 或哈希映射,我是否正确地说它将是 O(n.log(n))?)
谢谢