码迷,mamicode.com
首页 > 其他好文 > 详细

比较两三个字段的最大值

时间:2019-01-02 12:30:42      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:pre   bsp   style   span   字段   code   from   color   select   

SELECT d.id,
       (SELECT    MAX(maxtimes)
          FROM      ( VALUES ( d.t1), ( d.t2),
                    ( d.t3) ) AS times ( maxtimes )
       ) AS times
FROM(
SELECT a.times AS t1, b.times AS t2,c.times AS t3,a.id FROM a
LEFT JOIN  b ON b.id = a.id
LEFT JOIN  b ON a.id = c.id
) d

 

比较两三个字段的最大值

标签:pre   bsp   style   span   字段   code   from   color   select   

原文地址:https://www.cnblogs.com/scyitgz/p/10106219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!