sql語句插入一條記錄同時獲取剛插入的id

有兩種方式能夠得到剛新插入的id   ①從inserted臨時表中查詢   ②使用全局變量@@identity 查詢web 一、使用 output 關鍵字輸出,inserted 爲已插入的臨時表,這樣就能夠獲得剛剛插入該表的 id 了。 insert into t_student(name,studentno,sex,age) output inserted.id values('張連康','1
相關文章
相關標籤/搜索