zio-sql
zio-sql copied to clipboard
support `select *`
Currently if we want to select all columns of the table, we need to explicitly write them like this:
select(name ++ age).from(persons)
It would be nice to support something like :
selectAllFrom(persons)
Those 2 queries would need to yield the same type.
I'd like to work on this issue.