码迷,mamicode.com
首页 > Web开发 > 详细

discuz pre_forum_postposition表说明 - 一种新的自增字段实例

时间:2015-01-30 15:34:44      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

pre_forum_postposition

抢楼帖时会用到

CREATE TABLE `pre_forum_postposition` (
`tid` mediumint(8) unsigned NOT NULL,
`position` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL,
PRIMARY KEY (`tid`,`position`),
KEY `pid` (`pid`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk

 

主键是`tid`,`position`, 当插入   insert into pre_forum_postposition set tid=1128898, pid=2814945;

`position` 以 `tid` `pid` 为区分在该条件下自增

 

| 1128898 | 38 | 2811923 |
| 1128898 | 39 | 2814943 |

insert into pre_forum_postposition set tid=1128898, pid=2814945;

| 1128898 | 39 | 2814943 |
| 1128898 | 40 | 2814945 |

 

discuz pre_forum_postposition表说明 - 一种新的自增字段实例

标签:

原文地址:http://www.cnblogs.com/bandbandme/p/4262013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!