When I use "sql server enterprise manager" gui and write an expression like
where a=1 and (b=2 or c=3)
it gets transformed into
where (a=1 and b=2)
or (a=1 and c=3)
Is it only because it is easier to display the query in the query-design
table?
Or is it actually a more efficient method?
I.e, when I take the finished query and paste it into my asp-source,
should I keep the transformed query, which is larger, or transform it
back to the way I originally wrote it?
Leif
where a=1 and (b=2 or c=3)
it gets transformed into
where (a=1 and b=2)
or (a=1 and c=3)
Is it only because it is easier to display the query in the query-design
table?
Or is it actually a more efficient method?
I.e, when I take the finished query and paste it into my asp-source,
should I keep the transformed query, which is larger, or transform it
back to the way I originally wrote it?
Leif
Comment