I’m having trouble coming up with this solution logically. I have an accounts table with a datetime trial_expiration_date column. I’d like to return all accounts that have been expired for at least two weeks but no more than one month using this column. How can I achieve this?
I’m having trouble coming up with this solution logically. I have an accounts table
Share
Something like this should work. Just select all records where the expiration date is between two weeks ago and one month ago.