連線命令:mysql -h[主機位址] -u[使用者名稱] -p[使用者密碼]
建立資料庫:create database [庫名]
顯示所有資料庫: show databases;
開啟資料庫:use [庫名]
建立資料表:create table [表名] ([欄位名]
字段型別
[字段引數], ……);
顯示資料表字段:desc 表名;
當前庫資料表結構:show tables;
更改**
alter table [表名] add column [欄位名] datatype
說明:增加乙個字段(沒有刪除某個欄位的語法。
alter table [表名] add primary key ([欄位名])
說明:更改表的定義把某個列設為主鍵。
alter table [表名] drop primary key ([欄位名])
說明:把主鍵的定義刪除。
顯示當前表字段:show columns from tablename;
刪庫:drop database [庫名];
刪表:drop table [表名];
資料操作
新增:insert into [表名] values(」」,」」,……順序排列的資料);
查詢: select * from [表名] where ([條件]);
建立索引:create index [索引檔名] on [表名] ([欄位名]);
刪除:delete from [表名] where ([條件]);
修改:update [表名] set [修改內容如name = 」mary」] where [條件];
開始sql進行的操作:
- 開啟服務:net start mysql(mysql為配置時,可自定名稱)
- 關閉服務:net stop mysql
- 退出:exit/quit;
- 修改使用者密碼:mysqladmin -u 使用者名稱 -p password 新密碼
多行命令輸入:注意不能將單詞斷開;當插入或更改資料時,不能將字段的字串展開到多行裡,否則硬回車將被儲存到資料中;
MySQL 資料庫常用命令
1 mysql常用命令 create database name 建立資料庫 use databasename 選擇資料庫 drop database name 直接刪除資料庫,不提醒 show tables 顯示表 describe tablename 表的詳細描述 select 中加上disti...
MySQL 資料庫常用命令
1 mysql常用命令 create database name 建立資料庫 use databasename 選擇資料庫 drop database name 直接刪除資料庫,不提醒 show tables 顯示表 describe tablename 表的詳細描述 select 中加上disti...
mysql資料庫常用命令
首先開啟dos視窗,然後進入目錄mysql bin,再鍵入命令mysql u root p,回車後提示你輸密碼.注意使用者名稱前可以有空格也可以沒有空格,但是密碼前必須沒有空格,否則讓你重新輸入密碼.如果剛安裝好mysql,超級使用者root是沒有密碼的,故直接回車即可進入到mysql中了,mysq...