玩轉Mysql命令列

csdn2497242041發表於2016-05-01

 Mysql命令列下,從資料庫的建立到表的建立、插入、更新、查詢、刪除全過程


一、基本命令

1.登陸mysql

 開啟cmd終端,mysql -uroot ,輸入密碼後按Enter鍵。

2.設定字符集為utf8,防止中文亂碼

   set  names utf8;

3.新建資料庫

  create database MyData;

4.顯示所有資料庫

 show databases;

5.使用資料庫

 use Mydata;

6.新建表

 create  table  user(uid int,username varchar(16) not null,sex varchar(4),primary key(uid));

7.顯示所有表

 show tables;

8.修改表名

 alter/rename  table MyData to 新表名;

9.顯示錶中所有欄位

  describe user;或則show columns from user;

10.顯示錶中所有資訊

  select * from user;


二、CRUD 增刪改查

1.插入資料

 insert into user (uid,username)values(1,'張三','男');

2.查詢資料

 select uid,sex from user where 條件;

3.更新資料

 update user set sex ='女' where uid =1;

4.刪除資料

 delete from user where uid =1;

5.刪除資料表

 drop table  user;

6.刪除資料庫

 drop database MyData;


注意:mysql的所有命令都以";"或者\g為結束符


相關文章