Jump to content

unique by 2 columns


9three

Recommended Posts

Hi,

 

I'm wondering if its possible to have 2 columns and have the data in them (integers) be unique to each other.

 

Example:

 

Column 1 - Column 2

 

1000 - 4522

 

Never again can that combination exist or 4522 - 1000 exist unless the row is deleted.

 

Is this possible?

Link to comment
Share on other sites

Sure, the way you would do it would be in the code and not in the DB.

 

A simple query to check:

 

SELECT id FROM table WHERE col1 = someint AND col2 = someint;

 

If it exists then you do not insert it and re-generate a number, granted the more columns you have the potentially longer this process could take.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.