Case PRQL SQL PRQL SQL Case Note case is currently experimental and may change behavior in the near future Info case was previously (PRQL 0.4 to 0.5) called switch an...
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...
From Examples PRQL SQL PRQL SQL From Specifies a data source. from { table_reference } Table names containing schemas or needing to be quoted for other reasons nee...
Distinct PRQL SQL PRQL SQL Selecting from each group PRQL SQL Roadmap Distinct PRQL doesn’t have a specific distinct keyword. Instead, use group and take 1 : PRQL ...
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...
Group PRQL SQL PRQL SQL PRQL SQL Group Partitions the rows into groups and applies a pipeline to each of the groups. group { key_columns } ( pipeline ) The partit...
Group PRQL SQL PRQL SQL PRQL SQL Group Partitions the rows into groups and applies a pipeline to each of the groups. group { key_columns } ( pipeline ) The partit...
Tuples PRQL SQL PRQL SQL Tuples Tuple is a container type, composed of multiple fields. Each field can have a different type. Number of fields and their types must be known...