Created
August 17, 2017 17:23
-
-
Save wvpv/c93e7fccfb529d11628a1540d76aae8a to your computer and use it in GitHub Desktop.
This file contains 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 | |
de1.count1 | |
, de2.count2 | |
from ( | |
select count(*) as count1 | |
from DataExtension1 | |
) as de1 | |
cross join ( | |
select count(*) as count2 | |
from DataExtension2 | |
) as de2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment