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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.