I have 2 columns on my table that contains time in and out. I need to convert those columns to real time format to subtract them and get the spent hours
TimeIn     TimeOut 
150          1930
615          1747
410          1830
400          1600
these columns should look like
 TimeIn     TimeOut 
1:50           19:30
6:15           17:47
4:10           1830
4:00           16:00
or
 TimeIn          TimeOut 
1:50 am          7:30pm
6:15 am          5:47pm
4:10 am          6:30pm
4:00 am          4:00pm
how I can accomplish this?
thanks