If there is a very large table T1(Id INT, Name VARCHAR(MAX), Category VARCHAR(MAX)) and Category is INDEX UNIQUE NONCLUSTERED, does it matter the order of operands if I do the select like
SELECT * FROM T1 WHERE Name = 'name' and Category = 'cat'
vs
SELECT * FROM T1 WHERE Category = 'cat' and Name = 'name'
?