Created
October 11, 2021 08:14
-
-
Save Paulescu/bd901a4debf674a8f98b8b467f481d81 to your computer and use it in GitHub Desktop.
one_small_query.sql
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
| -- one small query | |
| SELECT | |
| price, | |
| item, | |
| ... | |
| time | |
| FROM | |
| orders_table | |
| WHERE | |
| DAY(time) = '2021-07-20' -- << replace with each of the N days you want to fetch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment