I am having a difficult time forming a conditional INSERT
I have x_table with columns (instance, user, item) where instance ID is unique. I want to insert a new row
You can use the following solution to solve your problem:
INSERT INTO x_table(instance, user, item) SELECT 919191, 123, 456 FROM dual WHERE 123 NOT IN (SELECT user FROM x_table)