select if ((date_add(initial_time , length_of_duration)<=concat(closing_date, '23:59:59'), 1, 0)
from tablename;
我得到语法错误,请。你能帮我找到正确的语法
答案 0 :(得分:1)
您目前使用的(
比)
更多
答案 1 :(得分:0)
你还有一个额外的(
:
SELECT IF (
DATE_ADD( initial_time, length_of_duration )
<=
CONCAT( closing_date )
, 1, 0
)
FROM tablename