G
Guest
Here's the table:
acct_id char(4)
age int
acct_bal currency
last_update_date date
I need a query that will present the records in this order:
Age
Acct_bal
Here's the kicker: I want the records that have been updated in the last 15
days (last_update_date) to be sorted LAST regardless of Age and Acct_bal
values. Can this be done in a query?
acct_id char(4)
age int
acct_bal currency
last_update_date date
I need a query that will present the records in this order:
Age
Acct_bal
Here's the kicker: I want the records that have been updated in the last 15
days (last_update_date) to be sorted LAST regardless of Age and Acct_bal
values. Can this be done in a query?