skip to Main Content

Column reference in "On Conflict" is ambiguous – Postgresql

I created the following table: CREATE TABLE IF NOT EXISTS public.publications ( publication_id bigint NOT NULL DEFAULT nextval('eap_publications_publication_id_seq'::regclass), title character varying(1000) COLLATE pg_catalog."default" NOT NULL, author character varying(1000) COLLATE pg_catalog."default" NOT NULL, type integer[] NOT NULL, sys_publication_timestamp timestamp without time…

VIEW QUESTION
Back To Top
Search