likely a very simple SQL (oracle) question for you. See here a simplified example of my problem:
DELETE FROM schema.tablename
WHERE
col1 = :v0
AND col2 = :v1
AND col3 = :v2
;
I don't know what :vo...:vo3 means and I have no idea what to google. Can you either explain it or give me some good literature on that ?