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 6713443
In Process

The Archive Base Latest Questions

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

We have something like: CREATE TABLE IF NOT EXISTS files (encoded_url varchar(65) UNIQUE NOT

  • 0

We have something like:

CREATE TABLE IF NOT EXISTS files
 (encoded_url varchar(65) UNIQUE NOT NULL primary key, modified DATETIME NOT NULL);

We want each time a new record is created to fill its modified field with now time automatically. Can we tall SQLite that it has to do such thing when we create a table or we should always insert nowwhen we fill in a row?

  • 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-26T08:22:53+00:00Added an answer on May 26, 2026 at 8:22 am

    You can use default CURRENT_TIMESTAMP in the column specification:

    sqlite> create table t (a datetime default CURRENT_TIMESTAMP, b text);
    sqlite> insert into t(b) values ('hello');
    sqlite> select * from t;
    2011-10-16 17:29:54|hello
    sqlite> insert into t(b) values ('hello again');
    sqlite> select * from t;
    2011-10-16 17:29:54|hello
    2011-10-16 17:30:04|hello again
    

    There are other date/time options, documented in the column definition part of the create table syntax docs.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have something like this: create table account ( id int identity(1,1) primary key,
Say I have a table like so: CREATE TABLE big_table (UUID varchar(32) not null,
My end goal is to accomplish something like: CREATE FOREIGN KEY IF NOT EXISTS
I have a MySQL table like this CREATE TABLE IF NOT EXISTS `vals` (
I have a hierarchical table on Oracle pl/sql. something like: create table hierarchical (
I have the following tables; CREATE TABLE IF NOT EXISTS `tags` ( `tag_id` int(11)
I currently have a table like this: Stuff ---------- StuffId identity int not null
Say I have two tables: create table parent ( number not null, constraint parent_pk
E.G. to create an ArrayList of Strings we have to do something like List<String>
I have a link that I dynamically create which looks something like the following:

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.