kayak / pypika

PyPika is a python SQL query builder that exposes the full richness of the SQL language using a syntax that reflects the resulting query. PyPika excels at all sorts of SQL queries but is especially useful for data analysis.
http://pypika.readthedocs.io/en/latest/
Apache License 2.0
2.5k stars 295 forks source link

Add null ordering params to order by clause #730

Open 0x726f opened 1 year ago

0x726f commented 1 year ago

The ORDER BY clause in SELECTs can now take in an additional optional keyword argument null_order, which can take one of two values -> NullOrder.first or NullOrder.last.

Added unit tests.