php mysql常用指令備忘

2021-04-07 00:31:14 字數 2245 閱讀 2890

//常用mysql查詢語句:

select * from contacts where first='john'

//模糊查詢:%是萬用字元,%$string%搜尋fieldname中包含$string的記錄,$string%表示以$string開頭,%$string表示以$string結尾。

select * from contacts where fieldname like '%$string%'

//結果按last欄位公升序排列

select * from contacts order by last asc

//結果按last欄位降序排列

select * from contacts order by last desc

//更新資料項

update contacts set first='$ud_first', last='$ud_last', phone='$ud_phone', mobile='$ud_mobile', fax='$ud_fax', email='$ud_email', web='$ud_web' where id='$ud_id'"

//刪除資料項

delete from contacts where id='$id'

//從網頁上提交修改

//update.php處理從網頁上傳過來的資料

$ud_id=$_post['ud_id'];

$ud_first=$_post['ud_first'];

$ud_last=$_post['ud_last'];

$ud_phone=$_post['ud_phone'];

$ud_mobile=$_post['ud_mobile'];

$ud_fax=$_post['ud_fax'];

$ud_email=$_post['ud_email'];

$ud_web=$_post['ud_web'];

$username="username";

$password="password";

$database="your_database";

mysql_connect(localhost,$username,$password);

$query="update contacts set first='$ud_first', last='$ud_last', phone='$ud_phone', mobile='$ud_mobile', fax='$ud_fax', email='$ud_email', web='$ud_web' where id='$ud_id'";

mysql_query($query);

echo "record updated";

mysql_close();

//update.php end

常用DOS指令備忘

1 刪除整個目錄,包括空目錄 rd d 管理 2012新同學練習 svn s q s 刪除當前目錄及子目錄 q 不詢問直接刪除 2 拷貝目錄樹 xcopy d 管理 2012新同學練習 e 03.內部系統 2012新同學練習 s e k i q xcopy c d aaa s e xcopy sou...

Git 指令備忘

git branch d branch name 刪除本地分支 git branch d branch name 強行刪除本地分支 git push origin dev 刪除遠端dev分支 將乙個空分支推送到遠端dev分支 git push origin delete branch name 刪除...

docker指令備忘

拉取映象 docker pull ubuntu 建立容器 1,docker create name myname ubuntu latest 只會建立不會啟動 2,docker run it ubuntu latest sh c bin bash 通過映象啟動 建立並啟動 將當前終端連線為這個 ub...