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
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "log" | |
| "net" | |
| "os" | |
| "strings" | |
| "time" |
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
| -- This query answers 'Which cities did Dave travel to in 2023?' | |
| CREATE TABLE episodes ( | |
| id BIGINT AUTO_INCREMENT PRIMARY KEY, | |
| content TEXT NOT NULL, | |
| valid_at DATETIME NOT NULL, | |
| session_id BIGINT, | |
| created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, | |
| INDEX idx_episodes_valid (valid_at) | |
| ); |
OlderNewer