Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
195 views
in Technique[技术] by (71.8m points)

sql - mySQL adding a conditional inside case clause

Essentially I have the following stored procedure that give the right response, but I would like to add additional logic that states if the response for TimeDiff is negative, respond with a 0, otherwise respond with difference (TimeLeft).

BEGIN

SELECT
`Person`,`Code`,
CASE 
WHEN `Problem` = "Large" 

THEN 500 - (TIME_TO_SEC((TimeDiff(Now(),`Start`)/60))) END AS TimeLeft

FROM Table1
WHERE `Code` = "1111"; 

END
question from:https://stackoverflow.com/questions/65867337/mysql-adding-a-conditional-inside-case-clause

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can nest CASE inside CASE:

SELECT
    `Person`,
    `Code`,
    CASE WHEN 
        `Problem` = "Large" 
    THEN 
        CASE WHEN
            500 - (TIME_TO_SEC((TimeDiff(Now(),`Start`)/60))) < 0
        THEN
            0
        ELSE
            500 - (TIME_TO_SEC((TimeDiff(Now(),`Start`)/60))) 
        END
    END AS TimeLeft
FROM Table1
WHERE `Code` = "1111"; 

Or, you can use the function GREATEST that is specific to MySQL:

SELECT
    `Person`,
    `Code`,
    CASE WHEN 
        `Problem` = "Large" 
    THEN
        GREATEST(500 - (TIME_TO_SEC((TimeDiff(Now(),`Start`)/60))), 0)
    END AS TimeLeft
FROM Table1
WHERE `Code` = "1111"; 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...