Hi there I am new to oracle I am looking for a good way to convert my MySQL query into Oracle SQL
here is the SQL from my MySQL:
update billing, kb_detail
set tanggal_penagihan = :tanggal_penagihan
is_change = :is_change
where billing.no_billing_sap = :no_billing_sap
and billing.no_billing_sap = kb_detail.no_billing_sap
while I was reading the answers most ppl give, I found out that I need to use merge into syntax or make a loop and assign the column name one by one, is there any better way? I mean like a simple way that MySQL update syntax