Question : Update date column

i need to set the date column to sysdate for all the records in a table

Answer : Update date column

Oracle
update yourtable set yourcolumn = sysdate;

SQL Server
update yourtable set yourcolumn = getdate()
Random Solutions  
 
programming4us programming4us