“Crie sequência, se não existe postgres” Respostas de código

Crie sequência, se não existe postgres

CREATE SEQUENCE IF NOT EXISTS tbl_field_seq;
Awful Angelfish

Como verificar se existe uma sequência no PostgreSQL

IF EXISTS (SELECT 0 FROM pg_class where relname = '<my sequence name here>' )
THEN
  --stuff here
END IF;
Emmanuel Mahuni

Respostas semelhantes a “Crie sequência, se não existe postgres”

Perguntas semelhantes a “Crie sequência, se não existe postgres”

Procure respostas de código populares por idioma

Procurar outros idiomas de código