Skip to content

Instantly share code, notes, and snippets.

@andrekeher
Created September 24, 2019 21:42
Show Gist options
  • Save andrekeher/27e8ceaa9b8057218b19ba0519a65b0a to your computer and use it in GitHub Desktop.
Save andrekeher/27e8ceaa9b8057218b19ba0519a65b0a to your computer and use it in GitHub Desktop.
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