v0.12.0-beta
Pre-release
Pre-release
github-actions
released this
19 Sep 08:09
·
1907 commits
to main
since this release
v0.12 Beta release
- variables . SQLPage now support setting and reusing variables between statements. This allows you to write more complex SQL queries, and to reuse the result of a query in multiple places.
-- Set a variable SET person = 'Alice'; -- Use it in a query SELECT 'text' AS component, 'Hello ' || $person AS contents;