PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

utwórz tabelę w postgreSQL

Najpierw bigint(20) not null auto_increment nie zadziała, wystarczy użyć bigserial primary key . Następnie datetime to timestamp w PostgreSQL. W sumie:

CREATE TABLE article (
    article_id bigserial primary key,
    article_name varchar(20) NOT NULL,
    article_desc text NOT NULL,
    date_added timestamp default NULL
);


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Ustaw IGNORECASE i inne opcje dla H2 w grze! Test ramowy

  2. fe_sendauth:brak błędu podanego hasła w postgresql + laravel

  3. czy jest coś podobnego do column_id w postgresql?

  4. Ustaw zmienną środowiskową (PGPASSWORD) przed wykonaniem polecenia (pg_dump) na serwerze Windows SSH w Paramiko

  5. Jak KOPIOWAĆ IMPORTOWAĆ plik json do postgresa?