V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
推荐学习书目
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 · Sep 8, 2022 · 2331 views
    This topic created in 1337 days ago, the information mentioned may be changed or developed.
    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 把两个表连表了
    Supplement 1  ·  Sep 8, 2022

    真的瑞了,投降了,使用原生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 replies    2022-09-09 09:58:16 +08:00
    xhzhang
        1
    xhzhang  
       Sep 8, 2022
    这个你可以把 case 语句放到 where 的 join 条件中,用 user join 两张表,添加不同的 join 条件,select 语句就按照你现在的逻辑取数就可以
    xhzhang
        2
    xhzhang  
       Sep 8, 2022
    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
    joApioVVx4M4X6Rf
        3
    joApioVVx4M4X6Rf  
       Sep 9, 2022
    试了一下好像还真是和楼主说的会变成连表
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3040 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 34ms · UTC 15:12 · PVG 23:12 · LAX 08:12 · JFK 11:12
    ♥ Do have faith in what you're doing.