Currently I have this table in my database:
CREATE TABLE `twMCUserDB` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`mc_userName` text NOT NULL,
`mc_userPass` text NOT NULL,
`tw_userName` text NOT NULL,
`tw_userPass` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
I want the column mc_userName
to be unique too (just like id
), but mc_userName
must be a string.
I tried to make it also a primary key, but that didn’t work.
When I add data to the table, do I first have to check whether the mc_userName
already exists? Or is there any built-in function in MySQL that I can use (in the insert query, or somewhere else)?