REPLACE INTO 为什么返回”2 rows affected”
表的结构:
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.
建议继续学习:
- window.location.href,window.location.replace(),window.location.reload() 三者的区别 (阅读:3556)
- substr、replace函数简单应用 (阅读:3144)
- href,replace(),reload() 三者的区别 (阅读:2768)
- javascript的String.replace的妙用 (阅读:2173)
扫一扫订阅我的微信号:IT技术博客大学习
- 作者:互联网,请记住我 来源: 互联网,请记住我
- 标签: replace
- 发布时间:2009-10-16 12:13:22
- [66] Oracle MTS模式下 进程地址与会话信
- [65] Go Reflect 性能
- [64] 如何拿下简短的域名
- [60] android 开发入门
- [59] 图书馆的世界纪录
- [59] 【社会化设计】自我(self)部分――欢迎区
- [58] IOS安全–浅谈关于IOS加固的几种方法
- [54] 视觉调整-设计师 vs. 逻辑
- [48] 界面设计速成
- [48] 读书笔记-壹百度:百度十年千倍的29条法则