如何在sql查询中应用if else

vik*_*rma 1 mysql

我已经编写了一个sql查询来获取产品现在我想在我的查询中应用where子句但是我在哪里有条件

if stock = 'in':
 where will be num>0:

if stock = 'out':
where will be num = 0;
 if stock = ' ':
no where clause will apply
Run Code Online (Sandbox Code Playgroud)

我写这个有两个条件

where       
   case 
      when stock='in' then num_in_stock > 0
      when stock ='out' then num_in_stock = 0
   end;
Run Code Online (Sandbox Code Playgroud)

但它不起作用.我收到一个错误:

(1064,"您的SQL语法有错误;请查看与您的MySQL服务器版本对应的手册,以获得正确的语法,以便在'第20行使用a.date_updat'的a.partner_id = 5顺序" )我得到的股票变量

stock = request.GET.get('stock')
Run Code Online (Sandbox Code Playgroud)

我的完整查询是

 SELECT distinct a.product_id, a.variant_id 
    from 
    (
        SELECT cp.id as variant_id,
        COALESCE(cp.parent_id,cp.id) as product_id,
        ps.partner_id as partner_id,
        ps.price_retail as price_retail,
        COALESCE(oc.order_count,0) as order_count,
        cp.date_updated as date_updated
        FROM partner_stockrecord as ps 
        LEFT JOIN catalogue_product as cp on cp.id = ps.product_id 
        LEFT JOIN (
            select product_id,count(product_id) as order_count 
            from order_line group by product_id) as oc on oc.product_id = ps.id 
            where ((''' + stock +''') = 'in' and num_in_stock > 0 ) or
                ((''' + stock +''') = 'out' and num_in_stock = 0 );


        ) 
    as a where a.partner_id = '''+ str(partner_obj.id) +''' order by a.date_updated desc;
    ''');
Run Code Online (Sandbox Code Playgroud)

Gio*_*sos 5

兑换:

 where 
    case 
       when stock='in' then num_in_stock > 0
       when stock ='out' then num_in_stock = 0
    end
Run Code Online (Sandbox Code Playgroud)

成:

where (stock = 'in' and num_in_stock > 0 ) or
      (stock = 'out' and num_in_stock = 0 )
Run Code Online (Sandbox Code Playgroud)

CASE是一个只返回标量值的表达式.它不能用于控制SQL中的执行流程.