-- insert product if it does not exist, or do nothing if the the product -- name is already present. INSERT INTO cisa_products(name) VALUES (?) ON CONFLICT(name) DO NOTHING;