How would you write a SQL query to identify all providers whose credentials expire within the next 30 days?
Use the providers table and evaluate the date range relative to the current date. Include credentials expiring today and on the 30th day from today, but exclude expired credentials and rows without an expiration date.
provider_id, provider_name, and credential_expiration_date| Column | Type | Description |
|---|---|---|
| provider_idPK | INT | Unique provider identifier |
| provider_name | VARCHAR(100) | Provider's full name |
| credential_expiration_date | DATE | Date the provider credential expires |