很多文章管理系统、产品管理系统对文章列表的排序方式一般只提供置顶、按id排序等,但很多时候需要对某一条记录设置个性化的排序(排在任意位置),系统却没有提供此功能
可以考虑的实现方法是增加一个排序字段[seq],并使seq的默认值为记录的id, order by的时候先 看是否置顶,再比较seq,然后在比较id
但如何在插入记录时就使seq=id呢,insert语句是没有提供这个功能的。
1、比较土的方法是手工操作,建一个按钮“追加排序值”,调用一个非常简单的sql语句,update article set seq=id where seq is null
2、比较理想的方法是通过触发器在插入时候赋值:
DELIMITER $$
DROP TRIGGER IF EXISTS `set_seq`$$
CREATE
TRIGGER `set_seq` before INSERT
ON `article`
FOR EACH ROW BEGIN
select max(article_id)+1 into @id from article;
set new.seq =@id;
END$$
DELIMITER ;
使用before而不使用after,因为after的话new就没有用了
使用select max(article_id)+1 into @id from article; 而不使用last_insert_id(),因为:
For MyISAM and BDB tables you can specify AUTO_INCREMENT on a secondary column in a multiple-column index. In this case, the generated value for the AUTO_INCREMENT column is calculated as MAX(auto_increment_column) + 1 WHERE prefix=given-prefix.
所以不能用triger里面的new.id 也不能用last_insert_id() 只能想到取此表中的最大id加1