MySQL資料庫的簡單操作指南

2021-10-06 13:51:18 字數 995 閱讀 1301

建立:create databse 庫名;

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

切換使用的資料庫:use 庫名;

刪除資料庫:drop 庫名稱;

應用於指令碼的2個技巧:

1、建立:create databases if not exists 庫名;

2、刪除:drop databases if exists 庫名;

注意:資料庫命名遵循linux系統命名規範,當庫名中包含特殊字元時,需要使用反引號。

建立:create table 表名(欄位1 int(8),欄位2 char(20),欄位3 int(10));

檢視表結構:desc 表名;

或:desc 表名\g; #以行方式展示結果。

或:explain 庫名.表名;

檢視建立表的語句:show create table 表名\g;

刪除表:drop table 表名;

檢視已有的表:show tables;

修改表:alter table 表名 rename 新錶名;

修改表中的字段型別:alter table 表名 modify 欄位1 int(30);

新增字段:alter table 表名 add 字段 enum(『m』,『f』) after 欄位2;

刪除字段:alter table 表名 drop 欄位名;

查詢資料:select * from 表名 where 表示式; #檢視表中的所有符合條件的資料。

插入資料:insert into 表名(欄位1,欄位2,欄位n) values(值1,值2,值3n); #插入資料到指定表。當省略欄位名時,值需要和表中的字段一一對應,即:表中有幾個字段,一條記錄中就需要有幾個值。

刪除資料:delete from 表名 where 條件表示式; #從表中刪除指定的記錄。

更新資料:update 表名 set 欄位1=值1,欄位2=值2 where 條件表示式; #更新指定記錄的指定欄位的值。

Mysql資料庫簡單操作

net start mysql 服務名 l l net stop mysql 服務名停止 bin mysqladmin uroot shutdown l 登陸資料庫 開啟dos 視窗 l mysql u root p mysql lmysql uroot p p5188 db1 default ch...

MySQL資料庫簡單操作

建立資料庫,同時設定字符集和校驗規則 create database ifnot exists testdb default character set utf8 collate utf8 general ci 刪除資料庫,不存在會報錯 drop database testdb 顯示所有資料庫 sh...

MySQL資料庫簡單操作

1.c users administrator mysql u root p 客戶端連線資料庫伺服器 enter password 有密碼輸入密碼登入,沒有直接回車進入 2.mysql show databases 顯示資料庫 3.mysql drop database if exists clas...