getUserIDs that accepts three parameters: startDate, endDate, and minAmount.user_id from the Purchases table.WHERE clause to filter the results based on the time_stamp being between startDate and endDate and the amount being greater than or equal to minAmount.
erDiagram
Purchases {
int user_id
datetime time_stamp
int amount
user_id time_stamp PK
}