mysql增刪改查基本語句

mysql增刪改查基本語句

ID:34724631

大小:55.18 KB

頁數(shù):3頁

時(shí)間:2019-03-10

mysql增刪改查基本語句_第1頁
mysql增刪改查基本語句_第2頁
mysql增刪改查基本語句_第3頁
資源描述:

《mysql增刪改查基本語句》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在工程資料-天天文庫。

1、mysql增、刪、改、查基本語句數(shù)據(jù)庫的鏈接和選擇及編碼$link=mysql_connect("localhost","root","123456")ordie("數(shù)據(jù)庫連接失敗".mysql_error());$sel=mysql_select_db("login",$link)ordie("數(shù)據(jù)庫選擇失敗".mysql_error());mysql_query("setnames'utf8'");添加數(shù)據(jù)$link=mysql_connect("localhost","root","123456")ordie("數(shù)

2、據(jù)庫連接失敗".mysql_error());$sel=mysql_select_db("login",$link)ordie("數(shù)據(jù)庫選擇失敗".mysql_error());mysql_query("setnames'utf8'",$sel);$add="insertintotitle(title,content,username,time)values('$title','$content','$username',$time)";$query=mysql_query($add);if($query){echo"a

3、ddsucess";echo"";}elseecho"addfalse";刪除數(shù)據(jù)$link=mysql_connect("localhost","root","123456")ordie("數(shù)據(jù)庫連接失敗".mysql_error());$sel=mysql_select_db("login",$link)ordie("數(shù)據(jù)庫選擇失敗".mysql_error());mysql_query("s

4、etnames'utf8'");$id=$_GET['id'];$delete="deletefromtitlewhereid='$id'";$query=mysql_query($delete);if($query){echo"deletesucess!";echo"";}elseecho"deletefalse";改數(shù)據(jù)$link=mysql_connect("localhost","root

5、","123456")ordie("數(shù)據(jù)庫連接失敗".mysql_error());$sel=mysql_select_db("login",$link)ordie("數(shù)據(jù)庫選擇失敗".mysql_error());mysql_query("setnames'utf8'",$sel);$update="updatetitlesettitle='".$title."',content='".$content."'whereid='$id'";$query=mysql_query($update);if($query){ec

6、ho"resetsucess!";echo"";}elseecho"resetfalse";查數(shù)據(jù)$link=mysql_connect("localhost","root","123456")ordie("數(shù)據(jù)庫連接失敗".mysql_error());$sel=mysql_select_db("login",$link)ordie("數(shù)據(jù)庫選擇失敗".mysql_error());mysql_

7、query("setnames'utf8'",$sel);$sql="select*fromtitle";$result=mysql_query($sql);while($rel=mysql_fetch_object($result)){?>title;?>id;?>">reset

8、

9、l->id;?>">delete1.select查詢語句和條件語句select查詢字段from表名where條件查詢字段:可以使用通配符*、字段名、字段別名(字段名as..)表名:數(shù)據(jù)庫.表名,表名常用條件:=等于、<>不等于、in(值,值)包含、notin(值,值)不包含

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動(dòng)畫的文件,查看預(yù)覽時(shí)可能會(huì)顯示錯(cuò)亂或異常,文件下載后無此問題,請(qǐng)放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對(duì)本文檔版權(quán)有爭議請(qǐng)及時(shí)聯(lián)系客服。
3. 下載前請(qǐng)仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時(shí)可能由于網(wǎng)絡(luò)波動(dòng)等原因無法下載或下載錯(cuò)誤,付費(fèi)完成后未能成功下載的用戶請(qǐng)聯(lián)系客服處理。