AND lbaq.watch_answer_start_datetime >= #{stm}
AND lbaq.watch_answer_end_datetime <= #{etm}
此时报错“元素内容必须由格式正确的字符数据或标记组成”,将大于号、小于号转义后,编译无错误
AND lbaq.watch_answer_start_datetime >= #{stm}
AND lbaq.watch_answer_end_datetime <= #{etm}
转义字符:
< < 小于号
> > 大于号
& & 和
' ' 单引号
" " 双引号