<?php
//建立資料庫鏈結,
mysql_connect("localhost", "mysql_user", "mysql_password") or die("could not connect: " . mysql_error());
//選擇資料庫
mysql_select_db("mydb");
//設定字符集
mysql_query('set names utf8') or die( '字符集設定錯誤' );
//查詢sql語句
$result = mysql_query("select id, name from mytable");
//輸出查詢結果
while ($row = mysql_fetch_array($result))
//釋放結果記憶體
mysql_free_result($result);
//關閉資料庫
mysql_close();
?>
建立乙個表的例項:
create table `bbs`.`guest_book` (
`id` tinyint( 6 ) not null auto_increment primary key ,
`edu` varchar( 20 ) character set gb2312 collate gb2312_chinese_ci not null ,
`age` varchar( 20 ) character set gb2312 collate gb2312_chinese_ci not null ,
`phone` varchar( 20 ) character set gb2312 collate gb2312_chinese_ci not null ,
`xiangmu` varchar( 20 ) character set gb2312 collate gb2312_bin not null ,
`time` datetime not null
) engine = myisam
增刪該查
新增資料
<?php
$query = "insertintograde (name,email,point,regdate) value ('李炎恢','[email protected]',,now())";
@mysql_query($query) or die(' 新增資料出錯:' .mysql_error());
?>
修改資料
<?php
$query = "updategrade set name='小可愛' whereid=6"; @mysql_query($query) or die(' 修改出錯:' .mysql_error());
?>
刪除資料
<?php
$query = "delete from grade whereid=6"; @mysql_query($query) or die(' 刪除錯誤:' .mysql_error());
顯示資料
<?php
$query = "select id,name,email,point from grade";
$result = @mysql_query($query) or die(' 查詢語句出錯:' .mysql_error()); while (!!$row = mysql_fetch_array($result))
?>
其他常用函式mysql_fetch_row() :從結果集中取得一行作為列舉陣列 mysql_fetch_assoc() : 從結果集中取得一行作為關聯陣列
mysql_fetch_array() : 從結果集中取得一行作為關聯陣列,或數字陣列,或二者兼有
mysql_fetch_lengths() : 取得結果集中每個輸出的長度 mysql_field_name() : 取得結果中指定欄位的欄位名
mysql_num_rows() : 取得結果集中行的數目 mysql_num_fields() :取得結果集中欄位的數目
mysql_get_client_info() : 取得 mysql 客戶端資訊 mysql_get_host_info() : 取得 mysql 主機資訊
mysql_get_proto_info() : 取得 mysql 協議資訊 mysql_get_server_info() : 取得 mysql 伺服器資訊
Mysql資料庫簡單操作
net start mysql 服務名 l l net stop mysql 服務名停止 bin mysqladmin uroot shutdown l 登陸資料庫 開啟dos 視窗 l mysql u root p mysql lmysql uroot p p5188 db1 default ch...
MySQL資料庫簡單操作
建立資料庫,同時設定字符集和校驗規則 create database ifnot exists testdb default character set utf8 collate utf8 general ci 刪除資料庫,不存在會報錯 drop database testdb 顯示所有資料庫 sh...
MySQL資料庫簡單操作
1.c users administrator mysql u root p 客戶端連線資料庫伺服器 enter password 有密碼輸入密碼登入,沒有直接回車進入 2.mysql show databases 顯示資料庫 3.mysql drop database if exists clas...