SELECT LAST_INSERT_ID() 的使用和注意事項

首先解釋下在映射文件中的代碼意思。java

<insert id="insertStudent" parameterType="com.czd.mybatis01.bean.Student">
    INSERT stu(name)VALUES (#{name})
    <selectKey keyProperty="id" order="AFTER" resultType="java.lang.Integer">
        SELECT LAST_INSERT_ID()
    </selectKey>
</insert>
  • 整體解釋:將插入數據的主鍵返回到 user 對象中。
  • 具體解釋: 
    • SELECT LAST_INSERT_ID():獲得剛 insert 進去記錄的主鍵值,只適用於自增主鍵
    • keyProperty:將查詢到主鍵值設置到 parameterType 指定的對象的那個屬性
    • order:SELECT LAST_INSERT_ID() 執行順序,相對於 insert 語句來講它的執行順序
    • resultType:指定 SELECTLAST_INSERT_ID() 的結果類型

那麼咱們要如何才能獲得插入數據的主鍵呢?sql

關鍵代碼:mybatis

@Test
public void main() throws Exception {
    StudentDao studentDao = new StudentDao();
    // 增長
    Student student = new Student();
    student.setName("b");
    studentDao.testInsertStudent(student);
}

public void testInsertStudent(Student student) throws Exception {
    SqlSession sqlSession = getSession().openSession();
    sqlSession.insert(nameSpace + ".insertStudent", student);
    sqlSession.commit();
    sqlSession.close();
    // 獲得插入數據的主鍵並將其打印出來
    System.out.println("index: "+student.getId());
}

打印結果:3d

這裏寫圖片描述

其中 index:21 就是咱們想要的 id 值了code

看到這裏不知道有沒有讀者以爲這不是廢話嗎?student.getId() 後確定是獲得新插入數據的 id 呀。ok,那麼咱們來驗證一下,把上面映射文件中的這段代碼刪掉。xml

<selectKey keyProperty="id" order="AFTER" resultType="java.lang.Integer">
    SELECT LAST_INSERT_ID()
</selectKey>

打印結果:對象

這裏寫圖片描述

從圖中咱們能夠發現程序沒有執行 SELECT LAST_INSERT_ID()語句了,而且 index 的值變成了 null,也就是得不到新插入數據的 id 了blog

到此爲止,相信你應該知道怎麼使用 SELECT LAST_INSERT_ID() 了吧。圖片

注意:get

      假如你使用一條INSERT語句插入多個行, LAST_INSERT_ID() 只會返回插入的第一行數據時產生的值。好比我插入了 3 條數據,它們的 id 分別是 21,22,23.那麼最後我仍是隻會獲得 21 這個值。

相關文章
相關標籤/搜索