DB/Oracle(DB)

UPDATE & DELETE

jinpark1992 2023. 7. 7. 10:34

EX)



UPDATE order_list
set name='홍길동형2', price=3300
WHERE cust_id='ID2'
;

select * 
from order_list
where cust_id = 'ID2'


-=