LAST_INSERT_ID用法

LAST_INSERT_ID兩種用法:io

  1. LAST_INSERT_ID()
  2. LAST_INSERT_ID(value+1)

注意事項:table

  1. select和insert/update必須是同一個connection
  2. 不區分table,a表insert一條數據,b表insert一條數據,這時返回的是b表的last_insert_id
  3. insert多條數據時,只返回第一條數據對應id

使用方法:ast

       update table set id=LAST_INSERT_ID(IF(id>maxValue, 0, id) + 1) where seq_name ='';date

        if(expr1, expr2, expr3) ,至關於三元表達示,expr1=true時返回expr2,false時返回expr3select

相關文章
相關標籤/搜索