排序设置

很多文章管理系统、产品管理系统对文章列表的排序方式一般只提供置顶、按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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值