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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:49:12+00:00 2026-06-17T12:49:12+00:00

I am writing code (using MySQL) to solve a problem similar to the following:

  • 0

I am writing code (using MySQL) to solve a problem similar to the following:

There are 20 boolean options (per every user).

Should I store 20 ENUM('false','true') or put into a table only IDs of these options which are true (so probably having less than 20 rows per user)?

  • 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-17T12:49:14+00:00Added an answer on June 17, 2026 at 12:49 pm

    If new options are likely to appear and you don’t filter by the options, you may as well go with a EAV structure (a record per option).

    This way, you can add new options more easily (no change to metadata).

    Assuming that the options values are either TRUE or FALSE (no NULL possible), you should create records only for non-default option values (TRUE in your case). An absence of the record would mean false.

    To retrieve all options, you could use this:

    SELECT  *, GROUP_CONCAT(CONCAT(o.id, ': ', ov.user IS NULL), ', ' ORDER BY o.id)
    FROM    users u
    CROSS JOIN
            options o
    LEFT JOIN
            option_value ov
    ON      (ov.user, ov.option) = (u.id, o.id)
    GROUP BY
            u.id
    

    , which would give you dynamic output:

    user_id   options
    1         1: 0, 2: 1, 3: 0
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Help! I'm writing some code to update a mySQL database using similar to the
I'm writing a multiple user log in system using PHP and MySql, the way
I am a beginner and writing code to display data in a Gridview using
I'm using c#. In many cases I'm writing code that can benefit from a
When writing C++ code I've learned that using the stack to store memory is
I am writing some code to type strings using the Robot class. Everything is
I am writing Python code in Visual Studio 2010 using the excellent Python Tools
I am writing host code for a CUDA program, so I am stuck using
I know I succeed in writing my code to that address using int 13h
I am writing some code that connects to a website, and using C#, and

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.