Last active
March 23, 2020 15:07
-
-
Save ramiroaznar/46733053bbe6469462f29178ae9d1b94 to your computer and use it in GitHub Desktop.
Cómo normalizar en 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
SELECT *, | |
variable/population as var_norm, | |
variable*1000/population as var_norm_1000hab | |
FROM table |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment