书栈网 · BookStack 本次搜索耗时 0.021 秒,为您找到 448 个相关结果.
  • 2.3. Variables

    Variables PRQL SQL PRQL SQL Variables We can define a relation — similar to a CTE in SQL — as a variable with let : PRQL let top_50 = ( from employees sort...
  • 3.2. Append

    Append PRQL SQL Remove PRQL SQL Intersection PRQL SQL Set operations Append Concatenates two tables together. Equivalent to UNION ALL in SQL. The number of rows is a...
  • 10.4. Functions

    Functions Function call Pipeline PRQL SQL PRQL SQL PRQL SQL PRQL SQL Currying and late binding Functions Function call The major distinction between PRQL and today...
  • 8.8. Syntax highlighting

    Grammars / syntax highlighting Grammars / syntax highlighting PRQL contains multiple grammar definitions to enable tools to highlight PRQL code. These are all intended to provi...
  • 11. Changelog

    PRQL Changelog 0.10.0 — 2023-10-26 0.9.5 — 2023-09-16 0.9.4 — 2023-08-24 0.9.3 — 2023-08-02 0.9.2 — 2023-07-25 0.9.1 — 2023-07-25 0.9.0 — 2023-07-24 0.8.1 — 2023-04-29 0.8....
  • 3.4. Filter

    Filter Examples PRQL SQL PRQL SQL PRQL SQL Filter Picks rows based on their values. Examples PRQL from employees filter age > 25 SQL SELECT * FROM...
  • 3.1.4. Filter

    Filter Examples PRQL SQL PRQL SQL PRQL SQL Filter Picks rows based on their values. filter boolean_expression Examples PRQL from employees filter age > 25 ...
  • 13.5. PHP

    prql-php Installation Usage Development Environment Building Tests Code style prql-php prql-php offers PHP bindings to prql-compiler crate through FFI. It provides th...
  • 4.6. Quoted Identifiers

    Quoting identifiers PRQL SQL PRQL SQL PRQL SQL PRQL SQL Quoting schemas PRQL SQL Quoting identifiers To use identifiers that are otherwise invalid, surround them wit...
  • 3.4. Filter

    Filter Examples PRQL SQL PRQL SQL PRQL SQL Filter Picks rows based on their values. filter { boolean_expression } Examples PRQL from employees filter age > ...