Write a postgre SQL statement to create a table named countries, including country_id, country_name and region_id and make sure that no countries except Italy, India and China will be entered in the table
All Answers
total answers (1)
total answers (1)
Output:
postgres=# CREATE TABLE IF NOT EXISTS countries ( postgres(# COUNTRY_ID varchar(2), postgres(# COUNTRY_NAME varchar(40) postgres(# CHECK(COUNTRY_NAME IN('Italy','India','China')), postgres(# REGION_ID decimal(10,0) postgres(# ); CREATE TABLEHere is the command to see the structure of the created table :