>백엔드 개발 >PHP 튜토리얼 >mysql如何按特定id排序

mysql如何按特定id排序

WBOY
WBOY원래의
2016-06-23 14:05:44943검색

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的按出现次序排列

谢谢xuzuning老师,狂亲

SELECT p.*  FROM p INNER JOIN p_sort s ON p.categories_id=s.categories_id    ORDER BY IF(FIND_IN_SET(id,s.best_sort_person_id)>0,FIND_IN_SET(id,s.best_sort_person_id),id) ASC ;

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.