Created
September 24, 2019 21:42
-
-
Save andrekeher/27e8ceaa9b8057218b19ba0519a65b0a to your computer and use it in GitHub Desktop.
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
SELECT | |
l.word_key, | |
l.usage, | |
l.book_key, | |
b.title, | |
l.timestamp | |
FROM | |
LOOKUPS l, | |
BOOK_INFO b | |
WHERE | |
l.book_key = b.id | |
ORDER BY | |
l.word_key; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment