This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/queries/views/globals/nav.psql
Cory Dransfeldt d2c4c78ff7
chore: fix related books + deduplication
- fixed total plays formatting
- formatted queries
- improved proxy server
2024-10-21 16:30:40 -07:00

14 lines
264 B
Text

CREATE OR REPLACE VIEW optimized_navigation AS
SELECT
n.id,
n.menu_location,
n.permalink,
n.icon,
n.title,
n.sort,
p.title AS page_title,
p.permalink AS page_permalink
FROM
navigation n
LEFT JOIN pages p ON n.pages = p.id;