Select Statement...
If i was trying to build a query which returned any individuals with the following id number's it would look like:
select *
from table_name
where id = 0000
or id = 0001
is this what it would look like, or is there a better way of righting this query so it would perform better...thanks
|