Let's say I have a simple table with two columns - C1, and C2. C1 is indexed, while C2 is not. If I were to write a stamenet like this:
select C1, C2 from table WHERE C1 = "A" and C2 = "B"
Would it be any different if I write it like this:
select C1, C2 from table WHERE...