PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

criar tabela no postgreSQL


Primeiro o bigint(20) not null auto_increment não funcionará, basta usar a bigserial primary key . Então datetime é timestamp no PostgreSQL. Contudo:
CREATE TABLE article (
    article_id bigserial primary key,
    article_name varchar(20) NOT NULL,
    article_desc text NOT NULL,
    date_added timestamp default NULL
);