Aggregate Examples PRQL SQL PRQL SQL Aggregate is required PRQL SQL Aggregate Summarizes many rows into one row. When applied: without group , it produces one row fr...
Null handling PRQL SQL Null handling SQL has an unconventional way of handling NULL values, since it treats them as unknown values. As a result, in SQL: NULL is not a val...
Aggregate Examples PRQL SQL PRQL SQL Aggregate is required PRQL SQL Aggregate Summarizes many rows into one row. When applied: without group , it produces one row fr...
Standard library let my_func = param1 param2 … -> body_expr ``` Where: * my_func is the name of the function * param1 is the first parameter optionally followed by a type ...
prql-dotnet Installation Usage TODO prql-dotnet prql-net offers PRQL bindings for .NET bindings as a netstandard2.0 library. It provides the PrqlCompiler class which con...
prql-dotnet Installation Usage TODO prql-dotnet prql-net offers PRQL bindings for .NET bindings as a netstandard2.0 library. It provides the PrqlCompiler class which con...
Pipes PRQL SQL PRQL SQL PRQL SQL Inner Transforms PRQL SQL Pipes Pipes are the connection between transforms that make up a pipeline. The relation produced by a trans...
Pipes PRQL SQL PRQL SQL PRQL SQL Inner Transforms PRQL SQL Pipes Pipes — the connection between transforms that make up a pipeline — can be either line breaks or a pi...
Derive Examples PRQL SQL PRQL SQL Derive Computes one or more new columns. Examples PRQL from employees derive gross_salary = salary + payroll_tax SQL SEL...