Daft
Daft copied to clipboard
SQL: support `SELECT <expr>;`
Is your feature request related to a problem? Please describe.
most sql dialects support selecting expressions without a from
> select 1;
> select 'hello';
> select (1,2,3);