database_views
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| database_views [2019/03/24 20:40] – [Database Views] steve | database_views [2019/03/24 22:52] (current) – steve | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Database Views ====== | ====== Database Views ====== | ||
| - | On all the SQL database schemas, the data is [[https:// | + | On all the SQL database schemas, the data is [[https:// |
| Each database is different, but for the sake of simplicity, here's the schema for some: | Each database is different, but for the sake of simplicity, here's the schema for some: | ||
| - | ==== SQLite ==== | + | ===== PostgreSQL ===== |
| + | |||
| + | < | ||
| + | CREATE VIEW scriptures AS | ||
| + | | ||
| + | books.id AS book_id, | ||
| + | chapters.id AS chapter_id, | ||
| + | verses.id AS verse_id, | ||
| + | volumes.volume_title, | ||
| + | books.book_title, | ||
| + | volumes.volume_long_title, | ||
| + | books.book_long_title, | ||
| + | volumes.volume_subtitle, | ||
| + | books.book_subtitle, | ||
| + | volumes.volume_short_title, | ||
| + | books.book_short_title, | ||
| + | volumes.volume_lds_url, | ||
| + | books.book_lds_url, | ||
| + | chapters.chapter_number, | ||
| + | verses.verse_number, | ||
| + | verses.scripture_text, | ||
| + | concat(books.book_title, | ||
| + | concat(books.book_short_title, | ||
| + | FROM (((volumes | ||
| + | JOIN books ON ((books.volume_id = volumes.id))) | ||
| + | JOIN chapters ON ((chapters.book_id = books.id))) | ||
| + | JOIN verses ON ((verses.chapter_id = chapters.id))) | ||
| + | ORDER BY volumes.id, books.id, chapters.id, | ||
| + | </ | ||
| + | |||
| + | ===== SQLite | ||
| < | < | ||
database_views.1553460007.txt.gz · Last modified: by steve
