Created
April 9, 2018 17:05
-
-
Save ssinfod/e59ed417fe3bc870ac0f6f13e00b8c02 to your computer and use it in GitHub Desktop.
Question sql.
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
GOOD: The following is OK because ID is not used twice in the same SITE | |
ID SITE | |
A 1 | |
B 1 | |
C 1 | |
A 2 | |
B 2 | |
C 2 | |
BAD: This is bad because ID B is used twice in the same SITE. | |
ID SITE | |
A 1 | |
B 1 | |
B 1 | |
A 2 | |
B 2 | |
C 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment