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

How add 1billion rows – Mysql

I have a table users (username, email, validts, confirmed. I want add 1 billion unique rows I tried to do this but it only adds 16 unique values INSERT INTO users (username, email, validts, confirmed) SELECT CONCAT('user', n) AS username,…

VIEW QUESTION
Back To Top
Search