0
SELECT `Item`.`name`, DATE_SUB(Item.modified, INTERVAL 1 DAY),
CASE
  WHEN DATE_SUB(Item.modified, INTERVAL 1 DAY) > Item.modified
  THEN 'FALSE'
  ELSE 'TRUE'
END status, `Item`.`restaurant_id` FROM `fs_development`.`items` AS `Item`
WHERE `Item`.`restaurant_id` = (677)
ORDER BY `modified` DESC LIMIT 1

我想要一个状态字段,其中包含“TRUE”或“FALSE”来指示记录是否在当天更新。

到目前为止,上述方法还没有奏效。

4

1 回答 1

0
SELECT `Item`.`name`, 
        DATE_SUB(Item.modified, INTERVAL 1 DAY),
        CASE WHEN date(Item.modified) = curdate()
             THEN 'TRUE'
             ELSE 'FALSE'
        END status, 
       `Item`.`restaurant_id` 
FROM `fs_development`.`items` AS `Item`
WHERE `Item`.`restaurant_id` = (677)
ORDER BY `modified` DESC
LIMIT 1
于 2012-11-30T00:53:26.623 回答