0

这是我的python代码。似乎如果原始 SQL 包含IF NOT EXISTS,sqlalchemy 将不会执行它。也没有抛出异常。

db.execute(text(
    """
    IF NOT EXISTS ( select 1 from agent_assignment where exception_id = :exception_id )
    BEGIN
        insert into agent_assignment(exception_id, [user], work_status, insert_date, insert_user)
        values (:exception_id, :user, 'pending', :date, :insert_update_user)
    END
    ELSE
        update agent_assignment
        set 
            [user] = :user,
            update_date = :date,
            update_user = :insert_update_user
        where exception_id =  :exception_id
    """),
    exception_id = exception_id, 
    user = assignee,
    date = datetime.now(),
    insert_update_user = insert_update_user
)

如果我删除该IF..ELSE部分,SQL 将正确执行。所以我猜从技术上讲,执行原始 SQL 是不可能的,IF..ELSE或者EXISTS是语句的一部分?

运行原始 SQL 的正确方法是什么?

提前致谢。

4

1 回答 1

0

我需要COMMIt在脚本末尾添加,因为查询有点复杂,而且不知何故 sqlalchemy 无法自动提交它。

于 2013-10-11T18:28:44.537 回答