标签: mysql tsql
我有一个MySQL表。我需要使用MySQL找到MIN IN TIME和MAX OUT TIME。
答案 0 :(得分:0)
H24时间的唯一列会更好..但是可以使用实际的列
select min( case when in_am is null then in_pm else in_am end) as min_in, max( case when out_pm is null then out_am else iout_pm end) as max_out from my_table;