mysql的myBatis,主键自增设置】的更多相关文章

mysql 的自增字段只能是主键,如果原表已经有主键,需要设置自增字段应该怎么做呢? 1.alter table bu_staff  drop primary key;  先删除表的主键  id为原表主键 2.alter table bu_staff  add primary key (face_id,id);  增加face_id为第一主键 3.alter table bu_staff  modify face_id int(11)  auto_increment;给face_id 增加aut…
<div id="topicList"> <div class="forFlow"> <div class = "post"> <h1 class = "postTitle"> <a id="cb_post_title_url" class="postTitle2" href="http://www.cnblogs.com/…
 org.springframework.jdbc.UncategorizedSQLException: Error getting generated key or setting result to parameter object. Cause: java.sql.SQLException: Error; uncategorized SQLException for SQL []; SQL state [null]; error code [0]; Error; nested except…
hilo(高低位方式high low)是hibernate中最常用的一种生成方式,需要一张额外的表保存hi的值.保存hi值的表至少有一条记录(只与第一条记录有关),否则会出现错误.可以跨数据库. 创建表 & 字段,赋值: ## Hibernate的Hilo主键 create table hibernate_hilo(next_hi integer not null); ); hibernate 配置文件 : XXX.hbm.xml 的主键配置 <id name="rowId&quo…
方法一: insert id="insert" parameterType="Person" useGeneratedKeys="true" keyProperty="id"> insert into person(name,pswd) values(#{name},#{pswd}) </insert> 方法二: <insert id="insert" parameterType=&…
语法:id从1000开始自增: ALTER TABLE 表名 AUTO_INCREMENT = 1000;…
向数据库中插入数据时,大多数情况都会使用自增列或者UUID做为主键.主键的值都是插入之前无法知道的,但很多情况下我们在插入数据后需要使用刚刚插入数据的主键,比如向两张关联表A.B中插入数据(A的主键是B的外键),向A表中插入数据之后,向B表中插入数据时需要用到A的主键. 比如添加一个用户,同时返回插入用户后得到的用户id: /** * 添加用户信息 * @param user * @throws Exception */ public intinsertUser(User user) throw…
主键不自增:返回值是插入的条数 <insert id="add" parameterType="EStudent"> insert into TStudent(name, age) values(#{name}, #{age}) </insert 主键自增: <insert id="add" parameterType="EStudent" useGeneratedKeys="true&quo…
建表SQL: DROP TABLE IF EXISTS person; CREATE TABLE person( person_id serial PRIMARY KEY NOT NULL, person_name ), gender INT, person_addr ), birthday DATE ); 注意:在postgresql中建表的时候,将主键id字段设置成serial类型,会自动生成一个关联主键id的序列(如下图中的数据库会创建一个隐含序列"person_person_id_seq…