Write a postgre SQL statement to create a table countries, including country_id, country_name and region_id and make sure that the combination of columns country_id and region_id will be unique
Write a postgreSQL statement to create a table countries, including country_id, country_name and region_id and make sure that the combination of columns country_id and region_id will be unique.
Output:
Here is the command to see the structure of the created table :
postgres=# \d countries Table "public.countries" Column | Type | Modifiers --------------+-----------------------+---------------------------------------- country_id | character varying(2) | not null default ''::character varying country_name | character varying(40) | default NULL::character varying region_id | numeric(10,0) | not null Indexes: "countries_pkey" PRIMARY KEY, btree (country_id, region_id) "countries_country_id_key" UNIQUE CONSTRAINT, btree (country_id)