Write a postgre SQL statement to create a simple table countries, including columns country_id, country_name and region_id
- Postgre SQL
- 2021-09-28
- mhanasmh00489829403
الأجوبة
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) |
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة