I saw the true expression in the docs, and I'm curious what its point is.
Example from the docs:
from sqlalchemy import true
print(select(t.c.x).where(true()))
The above results in SELECT x FROM t WHERE true
, which is the same as SELECT x FROM t
(?).
What are the reasons to construct a query like that?