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?
.... 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?