I have a table that has a relationship between an User_ID and a Role. User_ID can have many roles.
I have another table that has the orignal ID's (and some other info).
I need to write a bulk ingest kind of thing that will search through all ID's in Table1, and if there is no row in Table2 that has that ID with the Role "1", insert it. I have something like this:
INSERT INTO [jsec_user_role_rel]
([version]
,[role_id]
,[user_id])
SELECT 0, 1, id from jsec_user
WHERE not exists(select * from jsec_user_role_rel where user_id = id);
Which seems to do the trick, but I get duplicate entries in the jsec_user_role_rel table.