duckdb / duckdb-web

DuckDB website and documentation
https://duckdb.org
MIT License
168 stars 319 forks source link

[duckdb/#13389] - [Lambdas] Support N-ary lambdas in the list comprehension syntax needs documentation #3403

Closed duckdblabs-bot closed 1 month ago

duckdblabs-bot commented 2 months ago

See https://github.com/duckdb/duckdb/issues/13389

szarnyasg commented 2 months ago

@Tishj does the second parameter (in your example in the original PR, i) always denote the position?

select [4,5,6] as l, [x for x,i in l if i != 2] filtered;
Tishj commented 1 month ago

@Tishj does the second parameter (in your example in the original PR, i) always denote the position?

select [4,5,6] as l, [x for x,i in l if i != 2] filtered;

Yes it does 👍