I have a table tableA
with a timestamp column as shown below
T_SYSTEM_TIMESTAMP
--------------------------
2021-08-05 17:42:05.386000
2021-08-25 11:17:31.776000
2021-08-25 11:19:12.612000
How can I manually changed all the timestamp values to say, 2021-01-01
?
In SQL developer I can simply just do the following command for timestamps
update tableA
set t_system_timestamp = t_system_timestamp - 30;
Since for SQL Server timestamp is not an int I can't do this. Any help would be appreciated.