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

  • Home
  • SEARCH
  • 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 7170361
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T15:11:50+00:00 2026-05-28T15:11:50+00:00

I am currently responsible for creating a web based project management application for the

  • 0

I am currently responsible for creating a web based project management application for the department I work in. Each project has a bunch of different data points that describe it and my first plan was to just set up a table in the mysql database and an html form to manage the data in that table.

My managers just let me know they will need to be able to add/delete data points for the projects in case their work flow and project tracking changes. (This would be something that happens MAYBE a few times a year if at all)

So I am attempting to figure out the best way to go about storing this data in MySQL. The first approach that came to mind was give them an interface that allows them to add columns to the ‘projects’ table. and have a ‘master’ table that tracks all the column names and data types. But that feels like a REALLY Bad idea and a bit of a nightmare to maintain.

Another possible option would be to have the interface add a new table that stores all the information for that data point AND the id of the project that is using the data.

I understand that both of these could be really screwy ways of doing things. If there is a better way I would love to hear about it. If I need to clarify something let me know.

Thank you for your time

  • 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-28T15:11:52+00:00Added an answer on May 28, 2026 at 3:11 pm
    CREATE TABLE projects (
      id INT PRIMARY KEY AUTO_INCREMENT,
      name VARCHAR(50) NOT NULL
    )
    
    CREATE TABLE datapoints (
      id INT PRIMARY KEY AUTO_INCREMENT,
      projectid INT NOT NULL,
      name VARCHAR(50) NOT NULL,
      value VARCHAR(250) NOT NULL,
      INDEX(projectid),
      INDEX(name)
    )
    

    If you want more fancy, do one or more of

    • Put datapoint names in a table, reference them isnstead of naming them in table datapoints
    • Have datapoints have a field for each of numeric, pit, text, longtext OR use different tables
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently work on a web application based on Spring 3.1.0.M1, annotations based, and
The ASP.NET application that I am currently responsible for at my day job has
I'm creating a PHP web application framework (MVC). I'd rather not use external libraries
I use Hibernate/Spring and a MySQL Database for my data management. Currently I display
I am currently reviewing some code for colleagues on a different project and they
I am currently working on an application that is responsible for calculating random permutations
I'm building an application which (currently) consists of one web application (ASP.NET MVC) and
I have a program that is responsible for reading data, formatting it and creating
I'm currently updating a client application that makes use of a WCF web service
Currently we have a project with a standard subversion repository layout of: ./trunk ./branches

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.