You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
needn't add from clause
such as select 1,select 1 as a,select 1 a
it isn't supported now
Polars CLI version 0.8.0
Type .help for help.
〉select1 a;
Error: no table name provided in query
〉select1as a;
Error: no table name provided in query
〉select1 ;
Error: no table name provided in query
〉create table t(a int);
Error: only CREATE TABLE ASSELECT is supported
〉create table asselect1 a;
Error: sql parser error: Expected end of statement, found: select at Line: 1, Column 17
The text was updated successfully, but these errors were encountered:
Description
needn't add
from
clausesuch as
select 1
,select 1 as a
,select 1 a
it isn't supported now
The text was updated successfully, but these errors were encountered: