current
table_users - user_name, city_name
table_cities - city_id, city_name
I want to add a new column in table_users named city_id where city_id needs to get from table_cities.
expected
table_users - user_name, city_name, city_id (value of this needs to get from table_cities)
table_cities - city_id, city_name
is there any easy way to achieve this?