Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: add example for changing continent.

...

To re-assign a country from one region to another, change the CONTINENT value in both tables.

Code Block
sql
sql

update country set continent = 'Europe' where country = 'Latvia';

update nodedetails set continent = 'Europe' where country = 'Latvia';