V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
wuwukai007
V2EX  ›  Python

Sqlalchemy 如何实现 case + subquery 嵌套 subquery

  •  
  •   wuwukai007 · 2022-09-08 15:47:53 +08:00 · 1410 次点击
    这是一个创建于 568 天前的主题,其中的信息可能已经有所发展或是发生改变。
    select case
               when user.id > 10000 then
                   (select true_flag
                    from score
                    where created_time = (
                        select max(created_time)
                        from score
                        where user.id = score.user_id
                    ))
               when user.id <= 10000 then
                   (select true_flag
                    from score_bak
                    where created_time = (
                        select max(created_time) from score_bak where user.id = score_bak.user_id
                    ) 
                   ) 
            end true_flag
    from user;
    
    • 使用 case 函数 最后会变成 select true_flag from user,score 把两个表连表了
    第 1 条附言  ·  2022-09-08 17:00:09 +08:00

    真的瑞了,投降了,使用原生sql

    from sqlalchemy import text,select,column
    sql = text(sql)
    sql = sql.columns(column('true_flag'))
    subquery = select(sql.selected_columns.true_flag).select_from(sql.subquery())
    
    3 条回复    2022-09-09 09:58:16 +08:00
    xhzhang
        1
    xhzhang  
       2022-09-08 20:56:37 +08:00
    这个你可以把 case 语句放到 where 的 join 条件中,用 user join 两张表,添加不同的 join 条件,select 语句就按照你现在的逻辑取数就可以
    xhzhang
        2
    xhzhang  
       2022-09-08 20:58:48 +08:00
    select xxx from user join score on user.id = score.user_id and user.id > 10000 join score_bak on user.id = score.user_id and user.id <= 10000
    v2exblog
        3
    v2exblog  
       2022-09-09 09:58:16 +08:00
    试了一下好像还真是和楼主说的会变成连表
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2482 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 15:45 · PVG 23:45 · LAX 08:45 · JFK 11:45
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.