Working on a new project that's forcing me to learn a few new tricks (always fun!). One thing I haven't played with too much is a one-to-many SELECT statement where I only want to create one result. I typically use subqueries in PHP but with the amount of data in this project, performance is becoming an issue. Here's the relationship I'm trying to set up. Can someone please help formulate the best method for the SELECT statement?
Table "carriers":
DocketCarrierCityState
123456CharlieLos AngelesCA
Table "zipcodes":
CityStateZipCode
Los AngelesCA90001
Los AngelesCA90002
Los AngelesCA90003
Here's my need. The carriers table is imported from the US DOT with no zip codes (love government data!). All we get is a city, state. But we have a zipcodes table also imported from USPS. I need to match the carriers city,state to a zipcode in the zipcodes table so that I get a row like this:
123456CharlieLos AngelesCA90001
Here's my issue. There are 218 unique zipcodes for Los Angeles, CA. How can I create a SELECT statement that just finds the first matching zipcode and puts it in the resulting row. It's fine if it's not the exact zipcode that you'd use to send a piece of mail, as long as it's one of the Los Angeles, CA zipcodes it will serve it's purpose.
Because my next step then will be use the cross reference to show me all my carriers with zipcodes LIKE '90%' so that I can work with carriers in a specific region.
MySQL version: 5.0.45