I have a database called mail.dbf. I need to delete zip codes that end in an odd number (ex: 1,3,5,7 & 9). How do I only keep zip codes that end in an Even number. Keep in mind that the zip code field is called zip and is only 5 characters long.
Thanks for the help,
Jarrett
I have 2 databases.
Mail.dbf
Phone.dbf
I need to match the address and zip code field in mail.dbf to phone.dbf. When I get a match, I need the program to append the phone number field (field is called phone) from phone.dbf to mail.dbf. The address and zip code fields are called address and...
I have 2 databases.
Mail.dbf
Master.dbf
Basically, both of these databases have the same layout. They both have a field called contact (which is filled with people's names). The contact field in mail.dbf is blank. I need a program that will match up the phone numbers in both databases...
I need to write a program that sends HTTP POST requests to navigate a website and retrieve data from it. I'm currently testing using the following website:
http://www.htmlcodetutorial.com/forms/_FORM_METHOD_POST.html
The site sends me a 400 error when sending the following request:
Is my...
I have 2 databases.
1. Master.dbf
2. New.dbf
Both databases have the same layout. I need a program that will take the address field (called address) and zip code field (called zip) and see if it matches the records in the master.dbf. If there are duplicates, I want to have them deleted out...
I have a program that runs a state count for a database called mail.dbf. This is the program:
SELECT STATE, COUNT(STATE) AS HOWMANY;
FROM MAIL.DBF;
GROUP BY STATE;
ORDER BY STATE;
How can I copy the results to a text file?
Thanks for your help,
Jarrett
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.