Jump to content

Auto Add of date in table


mebil

Recommended Posts

Hello everyone. I have a what should be a simple question.

 

Building a simple \"Known Issues\" for the office. I want to add current date in a tables shown below. Would this be a php job, forms, or can mysql do it? Also how to do it would be great.

 


CREATE TABLE issue_name (

 idissue_name INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,

 name Varchar(45) NULL,

 date DATETIME NULL,

 added_by Varchar(45) NULL,

 PRIMARY KEY(idissue_name)

);



CREATE TABLE description (

 iddescription INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,

 issue_name_idissue_name INTEGER UNSIGNED NOT NULL,

 description Varchar(255) NULL,

 update_time DATETIME NULL,

 PRIMARY KEY(iddescription, issue_name_idissue_name),

 INDEX description_FKIndex1(issue_name_idissue_name),

 FOREIGN KEY(issue_name_idissue_name)

   REFERENCES issue_name(idissue_name)

     ON DELETE NO ACTION

     ON UPDATE NO ACTION

);



Link to comment
https://forums.phpfreaks.com/topic/1343-auto-add-of-date-in-table/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.