我一直在努力弄清楚如何从 RENTALLINE_1 中的 RENTALLINE_ID 中删除行,然后从 RENTAL_1 中删除 RENTAL_ID。我有 select 语句,可以找到我要删除的确切值。它会查找超过 3 年的记录。我正在使用带有命令行界面的 SQLPlus。
select rentalline_1.rentalline_ID,
rentalline_1.tool_store_id,
rentalline_1.rental_id,
rentalline_1.qty,
rental_1.datein
from rental_1
inner join rentalline_1 on rental_1.rental_id = rentalline_1.rental_id
where MONTHS_BETWEEN (SYSDATE, DATEIN) > (36)
提前感谢您的帮助!