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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:51:25+00:00 2026-05-23T20:51:25+00:00

I am designing a database for a site which will be heavily datadriven with

  • 0

I am designing a database for a site which will be heavily datadriven with forums and chat and other community features.

My question is this: I have identified certain information I would like to store for at least most of the tables. Creation date, last update, creator and others.

Which is the best way to store these, in a dedicated table or as fields in each respective table?

Why is the better solution better?
Can the opinion of best solution change if I have 50 tables or 100 tables?
100 000 records vs 4 million?

Are there other aspects?

  • 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-23T20:51:25+00:00Added an answer on May 23, 2026 at 8:51 pm

    Creation date and last update date are best stored as columns in the same table with their respective data. By doing that, you can use the TIMESTAMP data type so they are updated automatically when their respective rows change.

    The NULL timestamp on the row_created column will default to the timestamp when the row is created. In row_updated, the timestamp will be updated automatically every time the row is modified in any way. You do not need to modify them in application code.

    CREATE TABLE test.table (
      row_created TIMESTAMP NULL,
      row_updated TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
    )
    

    The creator user isn’t as critical to store in the same table, but it doesn’t really hurt to do it in the same table or another. For simplicity I would keep it in the same table.

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

Sidebar

Related Questions

I'm designing a database table which will hold filenames of uploaded files. What is
I am designing a standard ASP.Net site with a SQL database. I have a
Just started designing a database which I have not done before. And am wondering
I'm designing my database and LINQ To SQL ASP.NET web application. Imagine I have
I'm designing this collection of classes and abstract (MustInherit) classes… This is the database
I am designing a dynamic site for some form of weather data, which I
I'm designing a database and I've hit a spot where I'm not sure which
When designing a database to use MVCC (Multi-Version Concurrency Control), you create tables with
I'm currently designing a database for a project. Now I'm debating with myself whether
I'm designing a database of statistics about the operation of mechanical equipment. Each batch

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.