我正在为拍卖创建一个数据库,其中有一个表,用于存储要拍卖的项目的条目。
create table items(
item_ID number(5) PRIMARY KEY,
SDate DATE NOT NULL,
EDate DATE NOT NULL, //end date for auction
minBid number(5,2) NOT NULL,
bidInc number(2,2) NOT NULL,
title varchar2(20) NOT NULL,
descr varchar2(255),
currentBid number(5,2)
)
现在结束日期过去后,我希望数据库自动从表中删除该条目。
我该怎么做?