У меня есть один пример:
select count(1) from product where (product.loaisanpham = 10)
=> результат = 100
select count(1) from product where (product.giasanpham > 10000)
=> результат = 5000000
Теперь у меня есть два запроса:
1. select * from product where (product.loaisanpham = 10 and product.giasanpham > 10000)
2. select * from product where (product.giasanpham > 10000 and product.loaisanpham = 10)
Что быстрее (1) или (2)?
Я использую SQL Server .
Я помню, что когда я использовал mongodb, (1) был быстрее (2)