mysql更新資料之update set用法

來源:互聯網
上載者:User

update文法

 代碼如下 複製代碼

UPDATE [LOW_PRIORITY] [IGNORE] tbl_name
    SET col_name1=expr1 [, col_name2=expr2 ...]
    [WHERE where_definition]
    [ORDER BY ...]
    [LIMIT row_count]

執行個體

 代碼如下 複製代碼

create table links (name varchar(255) not null default '', url varchar(255) not null default '');

我們先隨便插入一些資料

 代碼如下 複製代碼

INSERT INTO users(name, age) VALUES('姚明', 25), ('比爾.蓋茨', 50), ('火星人', 600);

更新所有記錄

 代碼如下 複製代碼

update links set url='http://www.111cn.net';

上面更新就是把整個資料表裡url的值都埴寫為了http://www.111cn.net了,這樣肯定不適合現在代資料開發了,

 代碼如下 複製代碼


update user set Password = password('123456') where User = 'root';

上面就可以根據條件進行一些資料的更新了,這樣我們可以根據後面where條件來進行更新了。


下面分享一個php來更新mysql資料庫中指定記錄的方法

 代碼如下 複製代碼

<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
  die('Could not connect: ' . mysql_error());
}
mysql_select_db("my_db", $con);
mysql_query("UPDATE Persons SET Age = '36'
WHERE FirstName = 'Peter' AND LastName = 'Griffin'");
mysql_close($con);
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.