I have a coloumn ElaspedSecond
i have converted this Second to time
by
declare @i int
set @i = 12345
SELECT convert(char(8) , dateadd(second, @i, 0), 114)
now how can i replace the ElaspedSecond with i in all rows
i have converted this Second to time
by
declare @i int
set @i = 12345
SELECT convert(char(8) , dateadd(second, @i, 0), 114)
now how can i replace the ElaspedSecond with i in all rows
Comment