Last active
April 4, 2021 13:02
-
-
Save AoiYamada/1d8880d03727e11a62b541663268ad57 to your computer and use it in GitHub Desktop.
N + 1 Problems
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 * FROM singers LIMIT 5; | |
SELECT * FROM songs WHERE singer_id = 1; | |
SELECT * FROM songs WHERE singer_id = 2; | |
SELECT * FROM songs WHERE singer_id = 3; | |
SELECT * FROM songs WHERE singer_id = 4; | |
SELECT * FROM songs WHERE singer_id = 5; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment