What is the correct way to execute a select statement using ORDER BY foo DESC in the SQLAlchemy kernel? ( core, not ORM! )
I am currently including the direct order_by direction:
mytable.select(order_by='name DESC')
... it works (although I donβt like it, since it is a bit βhackyβ), but SQLAlchemy gives me the following warning:
SAWarning: Unable to resolve link to label "DESC name"; conversion to text () (this warning may be suppressed after 10 cases)
util.ellipses_string (element.element))
(I did not find anything in the document )
source share