mybatis执行insert返回主键

第一种方式(推介):



  insert into TStudent(name, age) values(#{name}, #{age})

第二种方式:

		

	
	
		SELECT @@IDENTITY
	
	insert into test_table(estimate_no) values(#{budgetNo})
	

你可能感兴趣的:(数据库)