程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql insert 插入數據教程

mysql insert 插入數據教程

編輯:MySQL綜合教程

mysql保存數據是web 開發者天天會用到了,下面我們就來看看insert語句的使用教程吧.

當數據放入一個MySQL表是被稱為插入數據。當插入數據,重要的是要記住的確切名稱和類型的表的列。如果您嘗試建立一個500字作文成為一個欄只接受整數的大小3 ,您會結束了一個討厭的錯誤!


insert 數據到您的表
現在您已經建立您的表格,讓我們把一些數據的小狗!這是在PHP / MySQL的代碼插入的數據為“榜樣”我們創建表在過去的教訓。

<?php
// Make a MySQL Connection
mysql_connect("localhost", "admin", "1admin") or die(mysql_error());
mysql_select_db("test") or die(mysql_error());

// Insert a row of information into the table "example"
mysql_query("INSERT INTO example
(name, age) VALUES('Timmy Mellowman', '23' ) ")
or die(mysql_error()); 

mysql_query("INSERT INTO example
(name, age) VALUES('Sandy Smith', '21' ) ")
or die(mysql_error()); 

mysql_query("INSERT INTO example
(name, age) VALUES('Bobby Wallace', '15' ) ")
or die(mysql_error()); 

echo "Data Inserted!";

?>

顯示為

data inserted

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved