Jump to content

[SOLVED] Need query help


wood6994

Recommended Posts

I have a table “zip_codes” that has “zip_code”, “city” & “state_name” fields

I also have the “profile” table that has “city” & “state” fields which most users have populated

I added an empty field “zip” to the “profile” table, and I want to populate it with the results from a query that looks up the zip code from the “zip_codes” table as it relates to the “state_name” and “city” in the same table.

 

Can anyone help?

 

Here’s what I was trying…

 

INSERT INTO profile

(zip)

SELECT zip_code

FROM zip_codes

WHERE city IN(SELECT pr.city FROM profile AS pr

INNER JOIN zip_codes AS zc ON pr.city=zc.city

WHERE pr.city=zc.city AND pr.location=zc.state_name)

Link to comment
https://forums.phpfreaks.com/topic/136296-solved-need-query-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.