Hi, Let us consider a user table: Username,email1,email2
Now, I want to make sure that no two rows in this table have any common email address. What would be the best way to ensure this ?
E.g.: If table has row: "Bill,[email protected],[email protected]", then trying to insert a row like "Billy,[email protected],[email protected]" should give an error.
Thanks in advance, Chandresh