SQL 字段联接

SQL 字段连接
有表:

忙时 08:00 19:00 Alloc_sdcch           >=     1000
忙时 08:00 19:00 Chan_req_caus_atm     >=     500
凌晨    01:00  08:00 Alloc_sdcch           >=     800

输出结果为:
       
忙时  08:00 19:00 Alloc_sdcch>=1000 or Chan_req_caus_atm>=500
凌晨  01:00 08:00 Alloc_sdcch>=800
------解决方案--------------------
select col1,col2,list(col4)
from xxx
group by col1,col2