skip to Main Content

Insert SQL query result into table column – Postgresql

I have this PostgreSQL table for storing words: CREATE TABLE IF NOT EXISTS words ( id bigint NOT NULL DEFAULT nextval('processed_words_id_seq'::regclass), keyword character varying(300) COLLATE pg_catalog."default", trademark_blacklisted character varying(300) COLLATE pg_catalog."default" ); insert into words (keyword,trademark_blacklisted) VALUES ('while swam is…

VIEW QUESTION
Back To Top
Search