I have a several hundred thousand records
values
that I need
where
00.000
and
00.000 result that
result that
00.000 I would appreciate a tip
I would appreciate a tip
one how to code this
Hi Richard
I guess you are saying you have a perf_dt column and perf_time column in the same table?
If so, give this statement a whirl...
select convert(datetime,convert(varchar,perf_dt,101) + ' ' + convert(varchar,perf_time,108),111) from your_table
Thanks, Ben