Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6222767
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T08:22:17+00:00 2026-05-24T08:22:17+00:00

I have a trigger that sets a datetime field in a table row when

  • 0

I have a trigger that sets a datetime field in a table row when a new row is inserted. (Don’t bother lecturing me that I could do this in the table definition, I have second datetime field that is using that functionality already and you can only do it with one column per table.)

This trigger works great for my purposes:

CREATE TRIGGER foobar_insert
    BEFORE INSERT ON foobar
        FOR EACH ROW SET NEW.created=NOW();

So whenever a new row is inserted, foobar.created gets set to the current time. This is great when I do something like:

INSERT INTO foobar (foo) VALUES (‘bar’);

The only problem with this is that if I want to explicitly set foobar.created in the insert statement, it gets overridden by the trigger.

So,

INSERT INTO foobar (foo,created) VALUES (‘foo’,’2006-01-01 12:12:12′);

results in foobar.created equaling the time of the insert, not the time specified in the insert statement.

So my question is: How can I change my trigger to only set foobar.created if it doesn’t already have a value?

EDIT:

In response to james_bond below, here is what worked:

DELIMITER $$
DROP TRIGGER IF EXISTS foobar_insert$$
CREATE TRIGGER foobar_insert
  BEFORE INSERT ON foobar
    FOR EACH ROW
      IF NEW.created IS NULL THEN
        SET NEW.created=NOW();
      END IF$$
DELIMITER ;

Note I had to include DELIMITER statements because the IF statement required an interior semicolon.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T08:22:17+00:00Added an answer on May 24, 2026 at 8:22 am

    Test for NEW.created is NULL, if is set it’s because you have set it in your insert statement,if it is NULL then it needs the current time as value, something like this will do the trick:

    if NEW.created is NULL THEN
       SET NEW.created = now();
    end if
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this Trigger in Postgresql that I can't just get to work (does
I have a table in a SQL Server 2005 database with a trigger that
I have a table that has an insert trigger on it. If I insert
I have an auditing trigger that automatically places the time something was updated and
I have a number of tables that use the trigger/sequence column to simulate auto_increment
I have a couple of triggers on a table that I want to keep
If I have a trigger before the update on a table, how can I
I have a method that sets up my linq data context. Before it returns
I have two divs and two separate links that triggers slideDown and slideUp for
I have been unable to trigger an onselect event handler attached to a <div>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.