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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T19:21:12+00:00 2026-06-06T19:21:12+00:00

Say I have an object-like data record like this: $article = array( ‘title’ =>

  • 0

Say I have an object-like data record like this:

$article = array(
    'title' => '',
    'tagline' => '',
    'content' => '',
    'stats' => array(
        'words' => 0,
        'paragraphs' => 0,
        'tables' => 0
    ),
    'references' => array(
        'reference 1',
        'reference 2',
        'reference 3'
    ),
    'attachments' => array(
        'images' => array(
            'image 1',
            'image s'
        ),
        'videos' => array(
            'video 1',
            'video 2'
        )
    )
);

My question is how can I store this array of data record in relational database? How should I design the table structure?

I know I can always set up flat fields such as stats_words, stats_paragraphs, and so forth but is there any more structural ways? Instead of storing a JSON or serialized string in a single field….

Thanks!

  • 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-06-06T19:21:13+00:00Added an answer on June 6, 2026 at 7:21 pm

    For example this way:

    article
      ID
      title _
      tagline _
      content ___
      stat_words
      stat_paragraphs
      stat_tables
    
    article_reference
      ID
      article_id -> article
      reference _
    
    article_attachment
      ID
      article_id -> article
      att_type // image or video
      path _
      title _
    

    (_ means varchar/text fields, other fields are numbers)

    Or as MySQL DDL:

    CREATE TABLE IF NOT EXISTS article (
       id               INT NOT NULL AUTO_INCREMENT,
       title            VARCHAR(255) NOT NULL,
       tagline          VARCHAR(255) NOT NULL,
       content          MEDIUMTEXT NOT NULL,
       stat_words       INT NOT NULL,
       stat_paragraphs  INT NOT NULL,
       stat_tables      INT NOT NULL,
       PRIMARY KEY ( id )
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
    
    CREATE TABLE IF NOT EXISTS article_reference (
       id               INT NOT NULL AUTO_INCREMENT,
       article_id       INT NOT NULL,
       reference        VARCHAR(255) NOT NULL,
       PRIMARY KEY ( id ),
       FOREIGN KEY ( article_id ) REFERENCES article( id )
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
    
    CREATE TABLE IF NOT EXISTS article_attachment (
       id               INT NOT NULL AUTO_INCREMENT,
       article_id       INT NOT NULL,
       att_type         INT NOT NULL,
       path             VARCHAR(255) NOT NULL,
       title            VARCHAR(255) NOT NULL,
       PRIMARY KEY ( id ),
       FOREIGN KEY ( article_id ) REFERENCES article( id )
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is a best practices question Let say, I have a class object, like
Let's say I have objects which look very roughly like this: class object {
Let's say I have a Parent object like this (in pseudo code) public Parent()
Let's say I have an object who's class definition looks like: class Command: foo
Let's say I have an object graph of Countries / States / Cities, like
let's say I have HTML stored in HTMLElement object. It's outerHTML property looks like
Say I have an flash object embedded in XHTML like so... <object width=600 height=400>
Let’s say I have table/list like this n=3 in this case, but n can
Say i have a DataTable object with data from the database, and I need
I have an object in C# like this: private ClassWidget { public int ID;

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.