Created
July 22, 2022 18:54
-
-
Save matt212/4094152be78ed2604313badff5ab115c to your computer and use it in GitHub Desktop.
Sample search and group clause
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
File Refer https://drive.google.com/file/d/1fgEqB4LrSYhhgyeoKZl32ab-yO__bDht/view?usp=sharing | |
I would to optimized below query | |
select a.gender from "employees" as a | |
where lower( gender ) LIKE 'f%' group by gender | |
limit 20 | |
query execution plan | |
https://explain.dalibo.com/plan/h7e | |
Please use gdrive link to download and restore the sql to database for above query |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment