SQL數(shù)據(jù)庫語言
- 1.數(shù)據(jù)定義語言(CREATE,ALTER,DROP,DECLARE)
- 2.數(shù)據(jù)操縱語言(SELECT,DELETE,UPDATE,INSERT)
- 3.數(shù)據(jù)控制語言(GRANT,REVOKE,COMMIT,ROLLBACK)
創(chuàng)建數(shù)據(jù)庫
create database my-database
1
刪除數(shù)據(jù)庫
drop database my-database
1
創(chuàng)建新表
create table my_table(col1 type1 [not null] [primary key],col2,type2 [not null] [primary key],...)
1
根據(jù)已有的表創(chuàng)建新表
create table new_table like old_table
1
刪除表
drop table my_table
1
增加一個列
列增加后不能刪除。DB2中列加上后數(shù)據(jù)類型也不改變,唯一能改變的是增 加 varchar 類型的長度。
Alter table my_table add column col type
1
添加主鍵
Alter table my_table add primary key(col)
1
刪除主鍵
Alter table my_table drop primary key(col)
1
創(chuàng)建索引
create [unique] index inx on my_table(col...)
1
刪除索引
drop index inx
1
創(chuàng)建視圖
create view my_view as select statement
1
刪除視圖
drop view my_view
1
常用的 sql 基本語句
選擇:select * from my_table where 條件
插入:insert into my_table (field1,field2) values (value1,value2)
刪除:delete from my_table where 條件
更改:update my_table set field1 = value1 where 條件
查找:select * from my_table where field1 like ‘%value1’
排序:select * from my_table order by field1,field2 [desc]
總數(shù):select count * as totalcount form my_table
求和:select sum(field1) as sumvalue from my_table
平均:select avg(field1) as avgvalue from my_table
最大:select max(field1) as maxvalue from my_table
最?。簊elect min(field1) as minvalue from my_table
php 操作 MySQL 數(shù)據(jù)庫
1.鏈接數(shù)據(jù)庫
$conn=@mysql_connect("localhost","root","root");
if(!$conn){
die("數(shù)據(jù)庫連接失敗",mysql_error())
}else{
echo"數(shù)據(jù)路連接成功"
}123456
2.選擇數(shù)據(jù)庫
mysql_select_db("web",$conn)
1
3.執(zhí)行 sql 語句
$query=mysql_query("select * from 表名 where 1")
1
4.操作 sql 結(jié)果
while($row=mysql_fetch_assoc($result)){
print_r($row);
echo "<br>";
}1234
5.關(guān)閉 mysql 鏈接
mysql_close($conn)