Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6541757
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T11:08:38+00:00 2026-05-25T11:08:38+00:00

I have the following tables in a MySQL 5.x database: Users: id county_id state_id

  • 0

I have the following tables in a MySQL 5.x database:

Users:
 id
 county_id
 state_id

Counties:
 id
 state_id

States:
 id

States is a new table, each County belongs to one State, each user up until now has belonged to a single County – I want to be able to directly associate a user with a State and then delete the Counties table.

I can find out which state a user belongs to be referencing user-> county-> state & can re-associate individual users with something like the following pseudo-SQL:

UPDATE users
 SET state_id = (SELECT id FROM state WHERE state_id=(SELECT state_id FROM counties WHERE id=users.county_id) )
WHERE user_id=324235;

but not sure how to do this for all 320k+ users in my database.

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T11:08:39+00:00Added an answer on May 25, 2026 at 11:08 am

    Try this:

    UPDATE FROM users AS u
    INNER JOIN counties as c
      ON u.county_id = c.id
    INNER JOIN states as s
      ON c.state_id = s.id
    SET u.state_id = s.id
    

    Then put on a pot of coffee. 320k records might take a bit. You can look at deleting your indexes before executing the update and then recreating them when you are done. This could save you the time of having to update indexes as well as the table.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following tables in the database. users ----------------- | id | username
I have the following tables in the database. users ----------------- | id | username
I have a MySQL database-table with the following colums ID status (can contain values
I have two tables in my MySQL database (table1 and table 2). I want
I have the following three tables in a MySQL database in order to give
I have a MySQL innodb database at 1.9GB, showed by following command. SELECT table_schema
I have a following scenario in my SQL Server 2005 database. zipcodes table has
I have 2 mysql tables : Question with the following columns : id, question,
I have 2 mysql tables 1. questions: with the following columns: id, title, answer1,
I have the following table: mysql> SELECT * FROM `bright_promotion_earnings`; +----+----------+------------+----------+-------+ | id |

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.