SQL Server的update語句的工做原理

update語句的工做原理:先刪除後添加       好比執行這個語句:update guestbook set password='123' where user_id=1000; 就是把用戶號爲1000的用戶的密碼改爲123. 在SQL server執行的機制中,先是把user_id=1000的這條記錄刪除掉,而後再insert 一條語句,此時的password是 123 ,而不是原來的。我一
相關文章
相關標籤/搜索