檢視當前有多少資料庫:show databases;
選擇乙個資料庫(use test)或者建立乙個資料庫(create database test):
使用test 資料庫建立表:
檢視表結構:desc testtable;
插入資料: insert into testtable (???) values(????); 檢視表中的所有資料 select * from testtable;
建立表的時候沒有加入主鍵,可以使用alter 新增主鍵 alter table testtable add column id primary key auto_increment;可檢視表結構 desc testtable;
id這東西 應該放在第一列,可以使用alter 修改 :alter table testtable modify id int first; 並且使用desc
testtable 檢視 發現id的自增長屬性丟了 ,新增上去alter table testtable modify id int auto_increment
繼續新增幾組資料(使用批處理外部的指令碼來新增)source d:\testtable.sql(結尾不需要分號)
檢視表的建立資訊: show create table testtable
mysql 使用基礎 1
使用命令列連線 mysql mysql uroot p passowrd hlocalhost p port code mysql show databases 顯示資料庫 mysql use test 使用 test 資料庫 mysql show tables 顯示表資訊 mysql descri...
MySql基礎命令使用
登陸mysql命令 登陸mysql首先需要將mysql安裝目錄下的bin檔案路徑加入系統環境變數 如果你已經加入環境變數,只需開啟dos命令視窗,輸入 mysql u root 使用者名稱 p回車即得到該視窗 提示你輸入密碼,輸入成功即可進入mysql 進入mysql介面圖如下 進入此介面即可使用m...
基礎命令1
git status 可以隨時隨地的檢視工作區的狀態 git add 提交新檔案或提交修改 git diff difference。檢視不同 修改之後 git commit m note 提交到倉庫 cat 獲取當前文件的內容。在git中,head表示當前版本,head 表示上乙個版本,head 表...