Created
December 6, 2018 15:19
-
-
Save jfrantz1-r7/b07d05513f62936f041e28c3ebca620d 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 | |
| da.host_name, da.ip_address, COUNT(*) | |
| FROM | |
| dim_asset da | |
| GROUP BY | |
| da.host_name, da.ip_address | |
| HAVING | |
| COUNT(*) > 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment