“Crie a tabela se não existe postgreSQL” Respostas de código

Crie a tabela se não existe postgreSQL

CREATE TABLE IF NOT EXISTS table_name(id INT);
Yasha

Como verificar a tabela existe ou não no PostgreSQL

SELECT 1 FROM information_schema.tables
WHERE table_schema = 'schema_name'	AND table_name = 'table_name';
Foolish Falcon

Python Create Tabela, se não existe PostgreSQL

CREATE TABLE IF NOT EXISTS myschema.mytable (i integer);
Cooperative Cockroach

Respostas semelhantes a “Crie a tabela se não existe postgreSQL”

Perguntas semelhantes a “Crie a tabela se não existe postgreSQL”

Procure respostas de código populares por idioma

Procurar outros idiomas de código