当前位置: 代码迷 >> 综合 >> MySQL IF、 Bewteen、 AS、 Date_Format、Left join on等关键字实例
  详细解决方案

MySQL IF、 Bewteen、 AS、 Date_Format、Left join on等关键字实例

热度:99   发布时间:2023-11-27 09:18:10.0
我们在写SQL时候,往往会需要格式化或多表联合查询,现在来一个实例看看这个问题
SELECT t.id, t.topic_title AS title,
IF(sch.is_true='1','答案正确','答案错误') as answer,
DATE_FORMAT(sch.create_time, '%Y-%m-%d %H:%i:%s') as createtime 
FROM topic t 
LEFT JOIN student_commit_history sch 
on t.id = sch.topic_id 
where sch.student_id =41 AND sch.create_time 
BETWEEN '2020-03-01 00:00:00' and '2020-03-12 00:00:00'

在这里插入图片描述

  相关解决方案