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

The Archive Base Latest Questions

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

How would I implement a enumeration field in a database that doesn’t support enumerations?

  • 0

How would I implement a enumeration field in a database that doesn’t support enumerations? (i.e. SQLite)

The fields need to be easily searchable with ‘field = ?’ so using any type of data serialization is a bad idea.

  • 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. 2026-05-11T15:48:27+00:00Added an answer on May 11, 2026 at 3:48 pm

    Using a foreign key to a lookup table is the approach I use. In fact, I use this even when I do use a database that supports ENUM (e.g. MySQL).

    For simplicity, I may skip the ever-present ‘id‘ for the lookup table, and just use the actual value I need in my main table as the primary key of the lookup table. That way you don’t need to do a join to get the value.

    CREATE TABLE BugStatus (   status            VARCHAR(20) PRIMARY KEY );  INSERT INTO BugStatus (status) VALUES ('NEW'), ('OPEN'), ('FIXED');  CREATE TABLE Bugs (   bug_id            SERIAL PRIMARY KEY,   summary           VARCHAR(80),   ...   status            VARCHAR(20) NOT NULL DEFAULT 'NEW',   FOREIGN KEY (status) REFERENCES BugStatus(status) ); 

    Admittedly, storing strings takes more space than MySQL’s implementation of ENUM, but unless the table in question has millions of rows, it hardly matters.

    Other advantages of the lookup table are that you can add or remove a value from the list with a simple INSERT or DELETE, whereas with ENUM you have to use ALTER TABLE to redefine the list.

    Also try querying the current list of permitted values in an ENUM, for instance to populate a pick-list in your user interface. It’s a major annoyance! With a lookup table, it’s easy: SELECT status from BugStatus.

    Also you can add other attribute columns to the lookup table if you need to (e.g. to mark choices available only to administrators). In an ENUM, you can’t annotate the entries; they’re just simple values.

    Another option besides a lookup table would be to use CHECK constraints (provided the database supports them — MySQL doesn’t support CHECK until version 8.0.16):

    CREATE TABLE Bugs (   bug_id            SERIAL PRIMARY KEY,   summary           VARCHAR(80),   ...   status            VARCHAR(20) NOT NULL     CHECK (status IN ('NEW', 'OPEN', 'FIXED')) ); 

    But this use of a CHECK constraint suffers from the same disadvantages as the ENUM: hard to change the list of values without ALTER TABLE, hard to query the list of permitted values, hard to annotate values.

    PS: the equality comparison operator in SQL is a single =. The double == has no meaning in SQL.

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

Sidebar

Ask A Question

Stats

  • Questions 120k
  • Answers 120k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You need to configure the map.root path in your config/routes.rb… May 12, 2026 at 12:12 am
  • Editorial Team
    Editorial Team added an answer No. Once you write anything directly to the response stream… May 12, 2026 at 12:12 am
  • Editorial Team
    Editorial Team added an answer Are they definately tghe same items? If you have this… May 12, 2026 at 12:12 am

Related Questions

How would I implement a enumeration field in a database that doesn't support enumerations?
I am using the Settings class in my .NET project. I notice in the
How could i implement Type-Safe Enumerations in Delphi in a COM scenario ? Basically,
Adding a service reference to a web service (this is all WCF) in Visual
I would like to get a second opinion on how to handle Exceptions within

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.