»
S
I
D
E
B
A
R
«
REPLACE INTO 为什么返回”2 rows affected”
June 29th, 2009 by 一米六二

表的结构:

desc urls;
+——-+———————+——+—–+———+——-+
| Field | Type | Null | Key | Default | Extra |
+——-+———————+——+—–+———+——-+
| id | bigint(16) unsigned | NO | PRI | NULL | |
| url | varchar(255) | NO | | NULL | |
| md516 | varchar(32) | NO | UNI | | |
+——-+———————+——+—–+———+——-+
3 rows in set (0.01 sec)


原有数据:

+—-+———————–+——————+
| id | url | md516 |
+—-+———————–+——————+
| 0 | http://www.162cm.com/ | 49f6f2aaa26c124a |
+—-+———————–+——————+
1 row in set (0.00 sec)

执行的语句:

REPLACE INTO urls (`url`,`md516`,`id`) VALUES (’http://www.162cm.com/’,'49f6f2aaa26c124a’,0);

而执行这条语句的返回是:

Query OK, 2 rows affected (0.00 sec)

为啥呢….看起来数据啥也没变,不是吗?
看文档:http://au2.php.net/mysql_affected_rows:

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 that mysql_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.


2 Responses  
  • 小和尚 CHINA Ubuntu Linux Mozilla Firefox 3.0.11 writes:
    June 30th, 2009 at 11:54 pm

    replace => first delete ,then insert ?

  • 游客 CHINA Windows XP Internet Explorer 7.0 writes:
    July 1st, 2009 at 12:03 am

    如果该primary key 或unique key的记录存在,是先删再插入。否则就是仅有插入。
    换句话说,replace into … values …语句执行后,affected rows 要么是1 要么是2.


Leave a Reply

»  Substance: WordPress   »  Style: Ahren Ahimsa
29312 页面访问次数, 545 今天
11320 访问数, 168 今天
FireStats icon 由FireStats提供支持