Write a postgre SQL statement to create a simple table countries, including columns country_id, country_name and region_id.
CREATE TABLE countries ( COUNTRY_ID varchar(3), COUNTRY_NAME varchar(45) , REGION_ID decimal(10,0) );
Output:
postgres=# CREATE TABLE countries ( postgres(# COUNTRY_ID varchar(3), postgres(# COUNTRY_NAME varchar(45), postgres(# REGION_ID decimal(10,0) postgres(# ); CREATE TABLE
To see the structure of the created table :
postgres=# postgres=# \d countries; Table "public.countries" Column | Type | Modifiers --------------+-----------------------+----------- country_id | character varying(3) | country_name | character varying(45) | region_id | numeric(10,0) |
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Output:
To see the structure of the created table :