选择我的SQL查询中的IF条件

时间:2011-02-15 18:29:13

标签: mysql

select if ((date_add(initial_time , length_of_duration)<=concat(closing_date, '23:59:59'), 1, 0)
from tablename;

我得到语法错误,请。你能帮我找到正确的语法

2 个答案:

答案 0 :(得分:1)

您目前使用的()更多

答案 1 :(得分:0)

你还有一个额外的(

SELECT IF (
    DATE_ADD( initial_time, length_of_duration )
    <=
    CONCAT( closing_date )
    , 1, 0
)

FROM tablename