Is it possible to make a two UNIQUE keys in a MySQL table which work together? i.e. I have two fields in a table, either one can be the non-unique in different records, but not at the same time.
so in programming terms, it's like saying
if (Value1 is unique AND Value2 is unique) {
CANNOT MAKE RECORD
} else {
MAKE RECORD
}
If you see what I mean.
so in programming terms, it's like saying
if (Value1 is unique AND Value2 is unique) {
CANNOT MAKE RECORD
} else {
MAKE RECORD
}
If you see what I mean.