SqlAlchemy: case statement (case - if - then -else)

后端 未结 2 1374
礼貌的吻别
礼貌的吻别 2021-02-12 20:15

I\'m wondering if there\'s a way to create a case statement with SqlAlchemy, e.g. the postgresql version

Maybe literal SQL is the way to go if there is no

相关标签:
2条回答
  • 2021-02-12 20:27

    Check out the documentation about the case statement here: http://docs.sqlalchemy.org/en/latest/core/sqlelement.html#sqlalchemy.sql.expression.case

    0 讨论(0)
  • 2021-02-12 20:42

    Reference from the Official doc of SQLAlchemy

    from sqlalchemy import case, literal_column
    
    case(
        [
            (
                orderline.c.qty > 100,
                literal_column("'greaterthan100'")
            ),
            (
                orderline.c.qty > 10,
                literal_column("'greaterthan10'")
            )
        ],
        else_=literal_column("'lessthan10'")
    )
    

    The above will render the given constants without using bound parameters for the result values (but still for the comparison values), as in:

    CASE
        WHEN (orderline.qty > 100) THEN 'greaterthan100'
        WHEN (orderline.qty > 10) THEN 'greaterthan10'
        ELSE 'lessthan10'
    END
    
    0 讨论(0)
提交回复
热议问题