Restructure SQL docs: add function coverage table, fix errors, consol…#43
Merged
christophdb merged 1 commit intomainfrom Mar 20, 2026
Merged
Restructure SQL docs: add function coverage table, fix errors, consol…#43christophdb merged 1 commit intomainfrom
christophdb merged 1 commit intomainfrom
Conversation
…idate pages Overview of changes: - Add function support overview table to functions.md with all tested functions and their MySQL equivalents (tested against SeaTable 6.1.8) - Fix substract() → subtract() typo in functions.md - Mark hours() and isoweeknum() as not supported in SQL queries - Document that constants (pi, e) only work inside function calls - Fix incorrect ORDER BY rule (column does NOT need to be in SELECT) Structural improvements: - Merge clauses.md into select.md (WHERE, GROUP BY, HAVING, ORDER BY) - Move list operators (HAS ANY OF, etc.) from extended-syntax.md to select.md - Move formulas-in-SQL notes and Big Data indexes to index.md - Add quick reference tables (supported/not supported) to index.md - Remove clauses.md and extended-syntax.md, add redirects - Update mkdocs.yml navigation New structure: SQL/ ├── index.md — Intro + Quick Reference + Formulas + Big Data ├── select.md — SELECT with all clauses, operators, JOINs ├── insert-update-delete.md (unchanged) ├── data-types.md (unchanged) └── functions.md — Coverage table + complete function reference Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview of changes:
Structural improvements:
New structure:
SQL/
├── index.md — Intro + Quick Reference + Formulas + Big Data
├── select.md — SELECT with all clauses, operators, JOINs
├── insert-update-delete.md (unchanged)
├── data-types.md (unchanged)
└── functions.md — Coverage table + complete function reference