当前位置:   article > 正文

mysql与groupconcat相反的_mysql GROUP_CONCAT 以及 其逆过程

mysql group contact 反向

新建多选选项表types 以及 选择结果表 user_MultiSelect

DROP TABLE IF EXISTS `types`;

CREATE TABLE `types` (

`id` int(11) NOT NULL AUTO_INCREMENT,

`types` smallint(6) NOT NULL,

`comment` varchar(10) NOT NULL,

PRIMARY KEY (`id`)

) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;

/*Data for the table `types` */

insert into `types`(`id`,`types`,`comment`) values

(1,1,'a'),

(2,2,'b'),

(3,3,'c'),

(4,4,'d'),

(5,5,'e'),

(6,6,'f'),

(7,7,'g'),

(8,8,'h'),

(9,9,'i'),

(10,10,'j');

/*Table structure for table `user_MultiSelect` */

DROP TABLE IF EXISTS `user_MultiSelect`;

CREATE TABLE `

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/75026
推荐阅读
相关标签
  

闽ICP备14008679号