My SQL Query
SELECT emp_location, emp_system_name, emp_compName, tran_type_code, emp_morn_checkin, emp_ot_checkin, emp_ot_checkout, over_time, ontime, updated_by
FROM timesheet_tran
WHERE emp_id = 'TMSTEST'
AND tran_as_of_date = '04/02/14'
Returns data as

I want to find a way to combine and display data
Like
emp_location -- emp_system_name -- morn_check_OTM -- mor_check_DLY -- overtime_OTM --overtime_OT
AMK ::1 8.45 8.38 1:15 6:30
My SQL knowledge , cant do this :(
tran_type_codewhich value do you want to selectOTMorDLYorOTor any value??