Why do you recommend using trigger instead of unique index? I think when unique index works I don't have any reason to use trigger.
If the field you want to be unique is big one, like char(1000) or TEXT, You have to use trigger to save the uniqueness, though. On 3/2/07, Anoop kumar V <[EMAIL PROTECTED]> wrote:
I would suggest you put an after insert trigger which does the validation for you. If 2 fields are already null then it will just return an error and rollback else it will allow the insert to be committed. regards, Anoop On 3/1/07, Kory Wheatley <[EMAIL PROTECTED]> wrote: > > I have a database called accountcreation, and I want to setup a table > called accountinfo. This table will require that two out of the three > fields need to be "UNIQUE", I don't want duplications in these fields. One > field is a integer value the other field is a character value. What is the > best way to set this table up? > >
-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]