mysql如何更新資料庫欄位教程

來源:互聯網
上載者:User

   mysql如何更新資料庫欄位教程

  文法

  UPDATE table_name SET column_name = new_value WHERE column_name = some_value

  注釋:SQL 對大小寫不敏感。UPDATE 與 update 等效。

  為了讓 PHP 執行上面的語句,我們必須使用 mysql_query( 函數。該函數用於向 SQL 串連發送查詢和命令。

  例子

  稍早時,我們在本教程中建立了一個名為 "Person" 的表。它看起來類似這樣:

  FirstName LastName Age Peter Griffin 35 Glenn Quagmire 33

  下面的例子更新 "Person" 表的一些資料:

  $con = mysql_connect("localhost","peter","abc123");

  if (!$con)

  {

  die('Could not connect: ' . mysql_error());

  }

  mysql_select_db("my_db", $con);

  mysql_query("UPDATE Person SET Age = '36'

  WHERE FirstName = 'Peter' AND LastName = 'Griffin'");

  mysql_close($con);

  ?>

  在這次更新後,"Person" 表格是這樣的:

  FirstName LastName Age

  Peter Griffin 36

  Glenn Quagmire 33

        :更多精彩文章請關注三聯編程教程欄目。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.