PostgreSQL CREATE TABLE
CREATE TABLE To create a new table in a PostgreSQL database, one can use the UI or can also use the PostgreSQL CREATE TABLE statement. Syntax: CREATE TABLE table_name ( column_1 data_type column_constraint, column_2 data_type column_constraint, … ); Creating a TABLE using UI: Select the database. To get the catalogues and schema, left-click on the … Read more