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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T05:00:25+00:00 2026-06-11T05:00:25+00:00

I have a table which contains meta data for users. There are 4 fields…

  • 0

I have a table which contains meta data for users. There are 4 fields…

`ID`,`meta_name`,`meta_value`,`user_id`

I want to store emails in this table. Naturally these must be unique. However I want to store other data in this table as well, where the data does not need to be unique. Is there any way I can restrict 'meta_value' to be unique, only if 'meta_name' is equal to ’email’?

  • 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-11T05:00:26+00:00Added an answer on June 11, 2026 at 5:00 am

    By means of MySQL’s contraints – no.

    However you can use insert/update trigger that verifies uniqueness of the data and forbids illegal operations.

    Here is a draft of insert trigger (You can play with it here: http://sqlfiddle.com/#!2/5c9e3):

    DELIMITER //
    
    CREATE TRIGGER VerifyInsert BEFORE INSERT ON YourTestTable
    FOR EACH ROW
    BEGIN
    
    IF (SELECT COUNT(1) FROM YourTestTable
    WHERE YourTestTable.meta_name = 'EMail' AND YourTestTable.meta_value = NEW.meta_value
    AND NEW.meta_name = YourTestTable.meta_name) > 0 THEN
    
      SIGNAL SQLSTATE '45001' SET MESSAGE_TEXT = 'VerifyInsertFailed';
    
    END IF;
    
    
    END;
    
    //
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have table which contains data along with created on date. I want to
I have a table which contains TV Guide data. In a simplified form, the
I have a table which contains data about which node has been visited. It
I have a table which contains null values and I need to get data
I have a table (wp_postmeta), which contains four columns (meta_id, post_id, meta_key, meta_value). meta_key
I have table Users which contains columns: id, name, points, extra_points. How can I
I have a database table which holds meta data about images, the field in
I have a table which contains data gathered from meteorological observations. The data where
I have a table which contains two type of data, either for Company or
i have a table named record which contains four column branch,account,name,month. now i want

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.