Can I add two rows auto increment in two ids of same column
Let suppose I have an ID as Primary key and CID as secondary Key How I can add Auto increment function on both ids is there any solution in phpMYadmin using MySQL database For Example I want this is it possible???
CREATE TABLE IF NOT EXISTS `tbl_project_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cid` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`),
UNIQUE KEY `Key` (`cid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=18 ;
--
-- Dumping data for table `tbl_project_category`
--