Forked from wvpv/sfmc-sql-created-in-the-last-thirty-days.sql
Last active
May 4, 2020 01:54
-
-
Save web20opensource/142220f5f2f922402247aa67bf7414aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
emailAddress | |
from [dataExtension] | |
where createdDate > convert(date, getDate()-30) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
seems the comparison operators were inverted. I have updated them to shown as is expected to be.
And if the time frame is up to today, there's no really needed to include a time frame limit up, correct?