explain analyze example
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
EXPLAIN ANALYZE SELECT | |
photos.id, album_photos.album_id, connected_users.email_address | |
FROM photos JOIN album_photos ON album_photos.photo_id = photos.id | |
JOIN albums ON album_photos.album_id = albums.id | |
LEFT OUTER JOIN connected_users ON photos.connected_user_id = connected_users.id | |
WHERE album_photos.album_id = 1060 | |
AND photos.dead is not true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment