hi . i have this table and i want to create a query for identify any instrument(s) that have not been returned past their rental due date
create table InstStatus( InstStatus_ID integer not null primary key,
InstStatus_available varchar(20),
InstStatus_IssueDate Date,
InstStatus_ExpDate Date,
InstStatus_DurDate integer,
Cust_ID integer,
Inst_SN integer);