PHP學習之[第08講]數據庫MySQL基礎之增刪改查

1、工具:php

一、phpMyAdmin (http://www.phpmyadmin.net/)mysql

二、Navicat (http://www.navicat.com/)  sql

三、MySQL GUI Tools (http://dev.mysql.com/downloads/gui-tools/服務器

2、語法:函數

數據類型工具

描述性能

應用範圍ui

int,smallintspa

整型,經常使用int型,取值最大11位.net

點擊量,編號,真假

char ,varchar

字符串型,char最大取值255字節,varchar更長並伸縮

標題,姓名,關鍵字

Date,datime

日期型,固定格式:

0000-00-00 00:00:00

 

float ,double

小數類型,通常設置類型爲

(總長度,小數位長度)

價格,科學數值等

Text,longtext

備註型:沒有長度限制,但取決於服務器和mysql性能

新聞內容,長內容

Insert into 表 (字段1,字段2…values (1,值2)

Insert into 表  values (1,值2)

Insert into 表  set 字段1=1,字段2=2……

Select 字段,字段,…… from   表 

Select   *  或  函數(字段) from 

  count*)  //統計條數

  sum (字段)   //求和

  avg(字段)//求平均值

  max(字段)//求最大值

  min (字段)//求最小值

Select 字段,字段,…… from   where   條件 

字段 【 條件運算符】  值如: =  ,  >  ,  <   ,  <>  ,  and  ,  or   

函數:replace()

Select 字段,字段,…… from   表  where  字段  like ‘%%’  

Select 字段,字段,…… from   表  where  字段  not like ‘%%’  

Select 字段,字段,…… from   表  where  字段  in  (值,值)

Select 字段,字段,…… from   表  where  字段  not  in (值,值)

Select 字段,字段,…… from   表  group by 字段 

Select 字段,字段,…… from   表  order by 字段 [asc / desc ]

Select 字段,字段,…… from   表    limit    起始位   ,條數

Select *  from   user where age<30 group by job order by id desc limit 10

Update set 字段=值 , 字段=值  [where] [group] [order] [limit] 

delete from [where] [group] [order] [limit] 

相關文章
相關標籤/搜索