I would like to create local temp table in vertica and be able to insert values into it. This is what I have so far:
DROP TABLE DOMAINS_FLAG;
CREATE LOCAL TEMP TABLE DOMAINS_FLAG (domain_name VARCHAR, pub_ats_id INT)
INSERT INTO DOMAINS_FLAG
(domain_name, pub_ats_id)
VALUES ('vs.com', 123555)
select * from DOMAINS_FLAG
I would like my output to be:
domain_name | pub_ats_id
vs.com 123555
Thank you!