Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wvpv/c93e7fccfb529d11628a1540d76aae8a to your computer and use it in GitHub Desktop.
Save wvpv/c93e7fccfb529d11628a1540d76aae8a to your computer and use it in GitHub Desktop.
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