SQL Tutorial

SQL UPDATE DATE: How to Update a Date and Time Field in SQL?

SQL UPDATE DATE
SQL UPDATE DATE

SQL UPDATE DATE: Modifying Date Fields

Updating a date or datetime field is a common task when managing records that include timestamps. This guide shows you exactly how to use the UPDATE statement to change date and time values safely.

Complete Python Course with Advance topics:-
SQL Tutorial:-

Syntax

UPDATE Table_Name
SET Column_Name = 'YYYY-MM-DD HH:MM:SS'
WHERE Id = value;

Example: Update an Employee Joining Date

UPDATE EmployeeRecords
SET JoiningDate = '2024-02-20 08:45:00'
WHERE Id = 1;

Update to the Current Date/Time

-- MySQL
UPDATE EmployeeRecords SET JoiningDate = NOW() WHERE Id = 1;

-- SQL Server
UPDATE EmployeeRecords SET JoiningDate = GETDATE() WHERE Id = 1;

-- Standard SQL
UPDATE EmployeeRecords SET JoiningDate = CURRENT_TIMESTAMP WHERE Id = 1;

Add or Subtract Days from a Date

-- MySQL: extend by 30 days
UPDATE EmployeeRecords
SET JoiningDate = DATE_ADD(JoiningDate, INTERVAL 30 DAY)
WHERE Id = 1;

Important Notes

  • SQL appends 00:00:00 when no time is provided to a DATETIME column.
  • The WHERE clause is critical ÔÇö without it, every row gets updated.
  • Always run a SELECT with the same WHERE first to preview the affected rows.

Download New Real Time Projects:- Click here
Complete Advance AI topics:-

Conclusion

Updating date fields in SQL is simple with a clear SET column = value pattern. Use NOW(), GETDATE(), or CURRENT_TIMESTAMP for current time, and always include a precise WHERE clause. For more SQL tutorials, stay connected with .

update date in sql w3schools
update sql date format dd/mm/yyyy
sql server update datetime automatically
sql set datetime to specific date
update date in sql oracle
mysql update datetime
sql update date example
sql update date now

Source Code Available

Interested in This Project?

Get the complete source code for this project at a very affordable price — perfect for your portfolio, college submission, or learning. Message us on WhatsApp and we'll get back to you instantly!

Full source code included Step-by-step setup guide Instant delivery on WhatsApp Instant reply on WhatsApp
Chat on WhatsApp

We usually reply within a few minutes

Leave a Reply

Your email address will not be published. Required fields are marked *

Chat with us