A
alex
Query Performance
Hello,
Using Access ’03…
For those who know/understand how queries are processed…
Is there a performance difference between these two queries?
E.g.,
1.
Select *
From myTable
Where
FirstName = “*”
And
LastName = “Doe”
2.
Select *
From myTable
Where
LastName = “Doe”
I’m building a query in code and am wondering if I should keep the
asterisks or remove them when they stand alone like example 1.
Does it matter if I’m using Jet, Sql Server, or ORACLE with an Access
fe?
Thanks,
alex
Hello,
Using Access ’03…
For those who know/understand how queries are processed…
Is there a performance difference between these two queries?
E.g.,
1.
Select *
From myTable
Where
FirstName = “*”
And
LastName = “Doe”
2.
Select *
From myTable
Where
LastName = “Doe”
I’m building a query in code and am wondering if I should keep the
asterisks or remove them when they stand alone like example 1.
Does it matter if I’m using Jet, Sql Server, or ORACLE with an Access
fe?
Thanks,
alex