西西软件园多重安全检测下载网站、值得信赖的软件下载站!
软件
软件
文章
搜索

首页西西教程数据库教程 → 数据库mysql与sql server操作的一些区別

数据库mysql与sql server操作的一些区別

相关软件相关文章发表评论 来源:西西整理时间:2011/4/24 17:43:17字体大小:A-A+

作者:西西点击:131次评论:13次标签: mysql sqlserver

  • 类型:数据库类大小:4.3M语言:英文 评分:8.0
  • 标签:
立即下载

以前不怎麼使用mysql,最近有些事情,需要用到php和mysql。目前使用的版本是5.5.1

發現mysql與sql server有很多不同。可能逐漸地會整理一些文檔出來給大家參考。

今天第一篇說說,update操作的差異。在mysql中,如果update語句要設置的新值,與數據庫中當前的值是一樣的,其實意味着無需更改。這種操作是不會被執行的。

為什麼會發現這個問題呢?因為我在php程序中,需要獲取update語句所影響的行數。我發現很多時候為0. 追查下去,才明白他是這樣做的。從下圖中可以看到,我執行update語句兩次,第一次是修改了數據的(Changed:1),而第二次則沒有修改(Changed:0)。

而查閱php的幫助文檔,也很清楚地定義了這個行為

http://php.net/manual/en/function.mysql-affected-rows.php

Returns the number of affected rows on success, and -1 if the last query failed.

If the last query was a DELETE query with no WHERE clause, all of the records will have been deleted from the table but this function will return zero with MySQL versions prior to 4.1.2.

When using UPDATE, MySQL will not update columns where the new value is the same as the old value. This creates the possibility thatmysql_affected_rows() may not actually equal the number of rows matched, only the number of rows that were literally affected by the query.

The REPLACE statement first deletes the record with the same primary key and then inserts the new record. This function returns the number of deleted records plus the number of inserted records.

同樣的語句,在sql server中就不是這樣。例如下面這樣,其實兩個語句是一模一樣的,但每個都會被執行,一行被更改

為了證明這一點,我可以寫一個觸發器來檢測一下

CREATE TRIGGER TestTrigger
ON employees
FOR UPDATE
AS
BEGIN
    DECLARE @id INT
    DECLARE @name NVARCHAR(50)
    
    SELECT @id=UID,@name=Name FROM DELETED
    PRINT @id
    PRINT @name
END

.csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt { background-color: #f4f4f4; width: 100%; margin: 0em; } .csharpcode .lnum { color: #606060; }

再次執行語句,我們可以看到如下結果

這說明什麼問題?說明sql server的update語句確實每次都會執行,不管值是否有必要進行變化。

在sql server中,update操作會有兩個步驟,首先執行delete操作,然後執行insert操作。

上面的觸發器代碼中,訪問的deleted表,是一個邏輯表,裡面保存的就是delete的數據,也就是我們經常所說的“舊值”

    相关评论

    阅读本文后您有什么感想? 已有人给出评价!

    • 8 喜欢喜欢
    • 3 顶
    • 1 难过难过
    • 5 囧
    • 3 围观围观
    • 2 无聊无聊

    热门评论

    最新评论

    发表评论 查看所有评论(13)

    昵称:
    表情: 高兴 可 汗 我不要 害羞 好 下下下 送花 屎 亲亲
    字数: 0/500 (您的评论需要经过审核才能显示)