L
Lim Heng Sin
In the WHERE clause....
..... where area = "india" or area "china"
can be equivalent to:
where area IN("india","china").
What if:
where area like "a*" or area like "b*"
How to put the Like and IN command together
I'm trying to optimize the query because there are many
records
..... where area = "india" or area "china"
can be equivalent to:
where area IN("india","china").
What if:
where area like "a*" or area like "b*"
How to put the Like and IN command together
I'm trying to optimize the query because there are many
records