update clients set lastresult='Answering Machine' and dialresult='202' where lastresult='none' and dialresult='01' and clientid<5567
Dialing by order name alpabetically:
SELECT * from Clients WHERE DialResult = '01' ORDER BY Name DESC
Dialing by specific zip code:
The first query would be:
select * from clients where dialresult='01' and zipcode='75001'
the second query would be
select * from clients where dialresult='01' and zipcode>75001 and zipcode<75205