I would like to execute an INSERT procedure condition to subject tuple not present within database.
I am not certain how to formulate the following
IF !(SELECT a1, a2, a3, FROM table) THEN
INSERT VALUES INTO TABLE (a1, a2, a3)
ELSE
-- Do Nothing
END IF
Would I need to utilize a cursor, grab the tuple, and then check each value against the attributes of the procedure? I thought of that but would prefer not to if unnecessary.