PostgreSQL Alter Table: Alter a table to change the data type of a column
3. Write a SQL statement to change the data type of the column region_id to text in the table locations.
Here is the structure of the table locations.
postgres=# \d locations
Column | Type | Modifiers
----------------+-----------------------+-----------
location_id | numeric(4,0) |
street_address | character varying(40) |
postal_code | character varying(12) |
city | character varying(30) |
state_province | character varying(25) |
country_id | character varying(2) |
region_id | integer |
Now execute the following statement.
Sample Solution:
Code:
ALTER TABLE locations
ALTER region_id TYPE text;
Output:
Now see the structure of the table locations after alteration.
Column | Type | Modifiers
----------------+-----------------------+-----------
location_id | numeric(4,0) |
street_address | character varying(40) |
postal_code | character varying(12) |
city | character varying(30) |
state_province | character varying(25) |
country_id | character varying(2) |
region_id | text |
Go to:
PREV : Write a SQL statement to add a column region_id to the table locations.
NEXT : Write a SQL statement to drop the column city from the table locations.
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
What is the difficulty level of this exercise?
