This returns only txt1. Any thoughts?
Columns are (varchar (250),Null).
Columns are (varchar (250),Null).
Code:
select distinct employee_name, tran_date, billed_hrs, (txt1 + txt2 + txt3 + txt4 +txt5 + txt6) as Narrative from tat_time left outer join hbm_matter on tat_time.matter_uno = hbm_matter.matter_uno left outer join hbm_persnl on tat_time.tk_empl_uno = hbm_persnl.empl_uno left outer join tat_text on tat_time.time_uno = tat_text.source_uno where clnt_matt_code = '013187.0000041' and wip_status = 'B' and billed_hrs != 0 order by tran_date
Comment