| | |
| | | t.title, |
| | | t.content, |
| | | t.time, |
| | | t.obj |
| | | t.obj, |
| | | t.status |
| | | from ( |
| | | select 'alarm' type, t1.title, t1.content, t1.alarm_time `time`, t1.alarm_obj obj |
| | | select 'alarm' type, t1.title, t1.content, t1.alarm_time `time`, t1.alarm_obj obj,0 status |
| | | from t_mm_predict_alarm_message t1 |
| | | UNION |
| | | select 'suggest' type, t2.title, t2.content, t2.schedule_time `time`, t2.schedule_obj obj |
| | | select 'suggest' type, t2.title, t2.content, t2.schedule_time `time`, t2.schedule_obj obj,t2.status |
| | | from t_st_schedule_suggest t2 |
| | | ) t |
| | | <where> |