79645475

Date: 2025-05-30 12:46:25
Score: 0.5
Natty:
Report link

Use this "alter query" if you want to add a new column with the mentioned scenario

ALTER TABLE Table_Name
  add COLUMN DateTime_Column_Name TIMESTAMP NULL 
  DEFAULT NULL 
  ON UPDATE CURRENT_TIMESTAMP;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gautam Kumar Sahu