mithrandie / csvq

SQL-like query language for csv
https://mithrandie.github.io/csvq
MIT License
1.49k stars 65 forks source link

Support `table_name.*` #68

Closed spenserblack closed 2 years ago

spenserblack commented 2 years ago

With the following query

SELECT my_table.*
FROM `file.csv` my_table

I expected all fields from my_table to be selected. Instead the result is syntax error: unexpected token "*". Using table_name.* can be helpful to select all fields from one table, but not all fields from all tables. Version: 1.15.2

mithrandie commented 2 years ago

This feature has been included in version 1.17.0.