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
-- distinctselect distinct state from employee;
selectcount(distinct(b)) from t2;
-- aliasselect a as c1 from t1 order by c1 desclimit1;
selectt.afrom t1 t wheret.b>1order byt.adesclimit1;
-- subqueryselect t.*from (select*from t1 where a >1) t wheret.b>7;
select a, (selectmax(b) from t1) max_b from t1;
Through recent thinking, the project needs to redesign to be more like a database query engine and also to rethink its position that not just a learning project, but an OLAP query engine embedded in-process that sounds like duckdb, but leverages rust ecosystem and Apache Arrow.
Therefore, I renamed the project to sqlrs and started a new milestone.
Introduce distinct and subquery:
The text was updated successfully, but these errors were encountered: