have type-specific operator behavior as well as result-set behaviors, such
as date and numeric coercions, the type may need to be specified explicitly::
- >>> stmt = select([func.date(some_table.c.date_string, type_=Date)])
+ stmt = select([func.date(some_table.c.date_string, type_=Date)])
Functions are most typically used in the columns clause of a select statement,
:param \*clauses: list of column expressions that form the arguments
of the SQL function call.
- :param type_: optional :class:`.TypeEngine` datatype object that will be
+ :param type\_: optional :class:`.TypeEngine` datatype object that will be
used as the return value of the column expression generated by this
function call.