Question:
Delete Records – Payments
Contains the run and evaluate script of Oracle DML. Can be used as example
Write a query to delete payment details from payments table where discount coupon ‘D1’ was applied .

Code:
dml1.sql
delete from payments where discount_id='D1';