最常用的MySQL命令語句

2021-06-20 23:32:49 字數 307 閱讀 2718

e良師益友網

通過cmd連線mysql:mysql -uroot -p123456 (需要配置path環境變數:c:\program files\mysql\mysql server 5.6\bin )

建立資料庫並使用utf8編碼: create database utf8_test default character set utf8;

檢視已有的資料庫: show databases;

刪除資料庫:drop database utf8_set;(慎用)

檢視當前資料的狀態:status;(我主要是看當前資料所用的編碼)

Vim最常用的命令

www.kaixinlc.com vi file 開啟檔案到最後一行 其它模式 普通模式 esci 在游標前插入 a 在游標後插入 o 在當前行之下新建行 r 替換當前字元 gg 檔案首行 g 檔案末行 x 剪下當前字元 dd 剪下當前行 yy 複製當前行 p 在游標後貼上 p 在游標前貼上 u 撤...

最常用的Linux命令

基礎命令 pwd 顯示當前目錄 ls 檢視當前目錄下的檔案 ls l 檢視詳細資訊 ls a 顯示隱藏檔案 ls lh h human 更加人性化地顯示檔案列表 ls 大小為位元組 cat 檢視檔案內容 more 慢慢檢視檔案,可以用空格和回車 mkdir 建立檔案 mv 把檔案移動到某個目錄 mk...

最常用的Unix Linux命令

壓縮資料夾 tar zcvf archive name.tar dirname 解壓資料夾 tar xvf archive name.tar在檔案中查詢字串 不區分大小寫 grep i the demo file輸出成功匹配的行,以及該行之後的三行 grep a3 i example demo te...