真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mysql互換表中兩列數(shù)據(jù)方法講義

下文內(nèi)容主要給大家?guī)?lái)MySQL互換表中兩列數(shù)據(jù)方法講義,這里所講到的知識(shí),與書(shū)籍略有不同,都是創(chuàng)新互聯(lián)專(zhuān)業(yè)技術(shù)人員在與用戶接觸過(guò)程中,總結(jié)出來(lái)的,具有一定的經(jīng)驗(yàn)分享價(jià)值,希望給廣大讀者帶來(lái)幫助。

10年積累的成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有漢川免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

 

1.創(chuàng)建表及記錄用于測(cè)試

CREATE TABLE `product` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '產(chǎn)品id', `name` varchar(50) NOT NULL COMMENT '產(chǎn)品名稱', `original_price` decimal(5,2) unsigned NOT NULL COMMENT '原價(jià)', `price` decimal(5,2) unsigned NOT NULL COMMENT '現(xiàn)價(jià)', PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;INSERT INTO `product` (`id`, `name`, `original_price`, `price`) VALUES (NULL, '雪糕', '5', '3.5'), 
(NULL, '鮮花', '18', '15'), 
(NULL, '甜點(diǎn)', '25', '12.5'), 
(NULL, '玩具', '55', '45'), 
(NULL, '錢(qián)包', '285', '195');
mysql> select * from product;
+----+--------+----------------+--------+| id | name   | original_price | price  |
+----+--------+----------------+--------+|  1 | 雪糕   |           5.00 |   3.50 |
|  2 | 鮮花   |          18.00 |  15.00 |
|  3 | 甜點(diǎn)   |          25.00 |  12.50 |
|  4 | 玩具   |          55.00 |  45.00 ||  5 | 錢(qián)包   |         285.00 | 195.00 |
+----+--------+----------------+--------+5 rows in set (0.00 sec)

mysql互換表中兩列數(shù)據(jù)方法講義

2.互換original_price與price的值

新手可能會(huì)使用以下方法進(jìn)行互換

update product set original_price=price,price=original_price;

但這樣執(zhí)行的結(jié)果只會(huì)使original_price與price的值都是price的值,因?yàn)閡pdate有順序的,
先執(zhí)行original_price=price, original_price的值已經(jīng)更新為price,
然后執(zhí)行price=original_price,這里相當(dāng)于沒(méi)有更新。

執(zhí)行結(jié)果:

mysql> select * from product;
+----+--------+----------------+--------+| id | name   | original_price | price  |
+----+--------+----------------+--------+|  1 | 雪糕   |           5.00 |   3.50 |
|  2 | 鮮花   |          18.00 |  15.00 |
|  3 | 甜點(diǎn)   |          25.00 |  12.50 |
|  4 | 玩具   |          55.00 |  45.00 ||  5 | 錢(qián)包   |         285.00 | 195.00 |
+----+--------+----------------+--------+5 rows in set (0.00 sec)
mysql> update product set original_price=price,price=original_price;
Query OK, 5 rows affected (0.00 sec)
Rows matched: 5  Changed: 5  Warnings: 0mysql> select * from product;
+----+--------+----------------+--------+| id | name   | original_price | price  |
+----+--------+----------------+--------+|  1 | 雪糕   |           3.50 |   3.50 |
|  2 | 鮮花   |          15.00 |  15.00 |
|  3 | 甜點(diǎn)   |          12.50 |  12.50 |
|  4 | 玩具   |          45.00 |  45.00 ||  5 | 錢(qián)包   |         195.00 | 195.00 |
+----+--------+----------------+--------+5 rows in set (0.00 sec)

正確的互換方法如下:

update product as a, product as b set a.original_price=b.price, a.price=b.original_price where a.id=b.id;

執(zhí)行結(jié)果:

mysql> select * from product;
+----+--------+----------------+--------+| id | name   | original_price | price  |
+----+--------+----------------+--------+|  1 | 雪糕   |           5.00 |   3.50 |
|  2 | 鮮花   |          18.00 |  15.00 |
|  3 | 甜點(diǎn)   |          25.00 |  12.50 |
|  4 | 玩具   |          55.00 |  45.00 ||  5 | 錢(qián)包   |         285.00 | 195.00 |
+----+--------+----------------+--------+5 rows in set (0.00 sec)
mysql> update product as a, product as b set a.original_price=b.price, a.price=b.original_price where a.id=b.id;
Query OK, 5 rows affected (0.01 sec)
Rows matched: 5  Changed: 5  Warnings: 0mysql> select * from product;
+----+--------+----------------+--------+| id | name   | original_price | price  |
+----+--------+----------------+--------+|  1 | 雪糕   |           3.50 |   5.00 |
|  2 | 鮮花   |          15.00 |  18.00 |
|  3 | 甜點(diǎn)   |          12.50 |  25.00 |
|  4 | 玩具   |          45.00 |  55.00 ||  5 | 錢(qián)包   |         195.00 | 285.00 |
+----+--------+----------------+--------+5 rows in set (0.00 sec)

本文講解了關(guān)于mysql互換表中兩列數(shù)據(jù)方法,更多先關(guān)內(nèi)容請(qǐng)關(guān)注php'中文網(wǎng)。

相關(guān)推薦:

如何通過(guò)php生成0~1隨機(jī)小數(shù)方法

關(guān)于mysql 時(shí)間戳格式化函數(shù)from_unixtime的使用說(shuō)明

關(guān)于mysql函數(shù)concat與group_concat使用說(shuō)明事項(xiàng)

以上就是關(guān)于mysql互換表中兩列數(shù)據(jù)方法的講解的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注創(chuàng)新互聯(lián)其它相關(guān)文章!


網(wǎng)頁(yè)名稱:mysql互換表中兩列數(shù)據(jù)方法講義
文章分享:http://weahome.cn/article/jjigjo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部