“Como verificar se existe uma sequência no PostgreSQL” 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 “Como verificar se existe uma sequência no PostgreSQL”

Perguntas semelhantes a “Como verificar se existe uma sequência no PostgreSQL”

Mais respostas relacionadas para “Como verificar se existe uma sequência no PostgreSQL” em ActionScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código