v.1.1.54276New Feature
Added Optional WITH Clause for SELECT Query
Added an optional WITH section for a SELECT query. Example query: WITH 1+1 AS a SELECT a, a*aWhy it matters
This feature was created to improve query readability and maintainability by allowing users to define intermediate computed values or aliases once and reuse them multiple times in aSELECT statement. It reduces redundancy and simplifies complex expressions, making queries easier to write and understand.How to use it
Use the optionalWITH clause before the SELECT keyword to define aliases or expressions. For example:WITH 1+1 AS a
SELECT a, a * aThis defines
a as 1+1 and then uses a in the SELECT list.