在涉及数据库存储数据的时候,经常会遇到唯一值问题,有的是主键带来的限制,有的则是业务上的需要. 下面介绍几种唯一值的获取或者生产方法: 先建一个测试用的表tbl_user,有三个字段:Id.Name.Age,其中Id为主键. 1: drop table if exists `tbl_user`; 2: create table 3: `tbl_user` ( 4: `Id` int(10), 5: `Name` varchar(20), 6: `Age` int(10), 7: PRIMARY…