I didn't want to use a trigger on INSERT in my table.
I am wondering how to get this query to work (I simplified it for this post)
Problem I am having is I am not sure how to insert the sequence.nextval into the Table1_ID field.
I am wondering how to get this query to work (I simplified it for this post)
Code:
INSERT INTO Table1 (Sequence.nextval AS Table1_ID, FirstName, LastName)
(select '' AS Table1_ID, FirstName, LastName
from Table2
minus
select '' As Table1_ID, FirstName, LastName from Table1)
-- Rows in Table2 that are not in Table1
select