欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

mysql怎么按特定id排序

程序员文章站 2022-06-05 14:47:14
...
mysql如何按特定id排序
mysql如何按特定id排序
mysql怎么按特定id排序

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `p`
-- ----------------------------
DROP TABLE IF EXISTS `p`;
CREATE TABLE `p` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(255) default NULL,
`categories_id` int(11) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of p
-- ----------------------------
INSERT INTO `p` VALUES ('1', 'jimmy', '2');
INSERT INTO `p` VALUES ('2', 'tina', '2');
INSERT INTO `p` VALUES ('3', 'dd', '2');
INSERT INTO `p` VALUES ('4', 'hello', '2');
INSERT INTO `p` VALUES ('5', 'world', '2');
INSERT INTO `p` VALUES ('6', 'slucky', '2');


SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `p_sort`
-- ----------------------------
DROP TABLE IF EXISTS `p_sort`;
CREATE TABLE `p_sort` (
`categories_id` int(10) NOT NULL default '0',
`best_sort_person_id` varchar(100) default NULL,
PRIMARY KEY (`categories_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of p_sort
-- ----------------------------
INSERT INTO `p_sort` VALUES ('2', '2,5,1');

------解决方案--------------------
select * from p, p_sort
order by find_in_set(p.id, p_sort.best_sort_person_id)>0 desc, find_in_set(p.id, p_sort.best_sort_person_id) asc, id

find_in_set(p.id, p_sort.best_sort_person_id)>0 desc 用于将id=2,5,1的排在前面
find_in_set(p.id, p_sort.best_sort_person_id) asc 用于将id=2,5,1的按出现次序排列
mysql怎么按特定id排序

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • mysql怎么按特定id排序
  • 专题推荐