“Buat tabel Postgres” Kode Jawaban

Tabel Buat SQL Postgre

CREATE TABLE cities (
    city_id serial PRIMARY KEY,
    city_name VARCHAR (255) NOT NULL,
    population INT NOT NULL CHECK (population >= 0)
);

Stormy Seahorse

PostgreSQL Buat tabel sebagai pilih

CREATE TABLE films_recent AS
  SELECT * FROM films WHERE date_prod >= '2002-01-01';
Disturbed Dormouse

Buat tabel Postgres

CREATE TABLE holiday_calender (
	hcl_id bigserial NOT NULL,
	hcl_country integer,
	hcl_company integer,
	hcl_date timestamp NULL,
	hcl_description varchar(500) NULL,	
	hcl_active int4 NOT NULL,
	CONSTRAINT holiday_calender_pkey PRIMARY KEY (hcl_id)
);
Satsara Gunaratne

Tampilkan Tabel Buat di PostgreSQL

pg_dump -t 'schema-name.table-name' --schema-only database-name
Tough Tarsier

Buat Database Tabel di PSQL

virtual_pets=# CREATE TABLE communities (id SERIAL PRIMARY KEY, name varchar, description varchar);
CREATE TABLE
Elated Elephant

Jawaban yang mirip dengan “Buat tabel Postgres”

Pertanyaan yang mirip dengan “Buat tabel Postgres”

Lebih banyak jawaban terkait untuk “Buat tabel Postgres” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya