1. 程式人生 > >MySQL在cmd中的操作

MySQL在cmd中的操作

cmd中不區分大小寫,不管輸入大寫還是小寫,統一顯示小寫
SQL語句結束時一定要加;

一、基本命令

1、啟動說明

    說明:以管理員的身份執行cmd
    格式:net start 服務名稱
    示例:net start mysql57

2、停止服務

    說明:以管理員的身份執行cmd
    格式:net stop 服務名稱
    示例:net stop mysql57

3、連線資料

    格式:mysql -uroot -p
            mysql -hlocalhost -uroot -p
            mysql -hIP地址 -uroot -p
    說明:-h HOST            主機名
            -u   USER             使用者
            -p    PASSWORD 設定的密碼
            root                     使用者,超級管理員,不可進行遠端訪問

4、退出登入(斷開連線)

    quit或exit

5、檢視版本(連線後可以執行)

    示例:select version();

6、顯示當前的時間(連線後可以執行)

    示例:select now();

7、遠端連線

    格式:mysql -hIP地址 -uroot -p
    輸入對方的mysql密碼

二、資料庫的操作

1、建立資料庫

    格式1:create database 資料庫名 charset=utf8;
    示例1:create database stu charset=utf8;
    格式2:create database if not exists 資料庫名 character set utf8;
        說明:如果該資料庫不存在則建立該資料庫
    示例2:create database if not exists stu character set utf8;

2、刪除資料庫

    格式1:drop database 資料庫名;
    示例1:drop database sunck;
    格式2:drop database if exists 資料庫名;  
        說明:防止執行刪除不存在的庫報錯
    示例2:drop database if exists sunck;

3、切換資料庫

    格式:use 資料庫名;
    示例:use sunck;

4、檢視當前選擇的資料庫

    select database();

5、檢視所有的資料庫

    show databases;

6、檢視所建立的庫

三、事務處理

1.修改當前表的引擎是否為innoDB

    alter table 表名 engine = innoDB

2、查詢是否為自動提交

    select @@autocommit = 0

3、設定手動提交

    set autocommit = 0

4、執行事務的程式碼

    程式碼塊

5、執行提交或者回滾

    commit work 提交
    rollback work 回滾

四、表的操作

1、檢視當前資料庫中的所有表

    show tables;

2、清空表

    truncate 表名

3、建立表

    格式:create table 表名(列及型別);
    說明:
        auto_increment                  表示自增長
        primary key                     表示主鍵
        not null                        表示不為空
        unique                          表示唯一
    示例:create table student (id int auto_increment primary key,name varchar(20) not null,age int not null,gender bit default 1,address varchar(20),isDelect bit default 0);

4、刪除表

    格式:drop table 表名;
    示例:drop table student;

5、查看錶結構

    格式:desc 表名;
    示例:desc student;
    查看錶的詳細語句:desc 表名 \G  豎看

6、檢視建表語句

    格式:show create table 表名;
    示例:show ceate table student;

7、重命名錶名

    格式:rename table 原表名 to 新表名;
    示例:rename table car to newCar;
    格式2: alter table 表名 rename 新表名
    示例:alter table car rename newCar;

8、修改表

    格式:alter table 表名 add| change| drop 列名 型別;
    示例:alter table newCar add isDelete bit default 0;修改預設值等

1、更改索引:

        格式:alter table 表名 add 索引名(列名);
        示例:alter table newCar add unique(id);

2、為已經建立好的表新增外來鍵

        格式:alter table 表名 add constraint FK_ID foreign key(你的外來鍵欄位名) REFERENCES 外表表名(對應的表的主鍵欄位名);
        示例: alter table tb_active add constraint FK_ID foreign key(id) REFERENCES tb_user(id)

3、給表新增新的欄位(預設排在最後)

         alter table 表名 add 欄位名 欄位型別 約束條件

4、新增的欄位排在某個位置

        alter table 表名 add 欄位名  欄位型別 約束條件
            first  排在第一位
            after 欄位名排在某個欄位後面

9、建立一個和a一樣表結構的表b

五、資料操作

1、增

a、全列插入

        格式:insert into 表名 values(...);
        說明:主鍵列是自動增長的,但是全列插入時需要佔位,通常使用0,插入成功以後以實際資料為準
        示例:insert into student values(0,"Tom",19,1,"北京",0);

b、預設插入

        格式:insert into 表名(列1,列2,……)  values(值1,值2,……);
        示例:insert into student(name,age,address) values("Lilei",19,"深圳");

c、同時插入多條資料

        格式:insert into 表名 values(...),(...),……
        示例:insert into student values(0,"hanmeimei",18,0,"北京",0),(0,"poi",19,1,"北京",0),(0,"Bob",20,1,"上海",0);
        格式:insert into 表名[(指定的欄位)] value(值),(值)……
        說明:給指定欄位插入多個值
        示例:insert into student(username) values("hanmeimei"),("poi");

d、快速插入值

        格式:insert into 表名[(欄位名)] select 欄位[,*] from 表名;
                insert into a select * from a;
        說明:將表中現有的資料進行復制並加入到本表中
        示例:insert into a(username) select username from a


注意:欄位的值和欄位的名是一一對應的

2、刪

a、刪除資料

        格式:delete from 表名 where 條件;
        示例:delete from student where id=4
        注意:沒有條件就是全部刪除

b、清空表的方式

1.格式:truncate 表名 自增回原位
2.格式:delete from 表名 刪除表中的所有資料
    示例:delete from a;
        alter table 表名 auto_increment=1        把自增設定為1
    注意:刪除的時候,如果沒有條件語句,會刪除所有的資料
            刪除後的資料,自增依然記錄當前的資料的位置

3、改

1.格式:updata 表名 set 列1=值1,列2=值2,……where 條件;

    示例:updata student set age=16 where id=7;
    注意:沒有條件預設全部列都修改

2.所有的年齡的基礎上加2

    updata a set age=age+2;

4、查

    說明:查詢表中的所有資料
    格式:select * from 表名;
    示例:select * from student;

六、查

1、基本語法

    格式:select * from 表名;
    說明:
            a、from關鍵字後面寫表中的表名,表示資料來源於這張表
            b、select後面寫表的列名,如果是*表示在結果集中顯示錶中的所有列
            c、在select後面的列名部分,可以使用as 為列起別名,這個別名顯示在結果集中
            d、如果要查詢多個列,之間使用逗號分隔。
    示例:
            select * from student;
            select name,age from student;
            select name as a,age from student;

2、消除重複行

    在select後面列前面使用distinct可以消除重複的行
    示例:
            select gender from student;
            select distinct gender from student;

3、條件查詢

    a、語法
        select * from 表名 where 條件;
    b、比較運算子  
        等於            =
        大於            >
        小於            <
        大於等於         >=
        小於等於         <=
        不等於          !=或<>
        需求:查詢id大於8的所有值
        示例:select * from student where id>8;
    c、邏輯運算子
        and           並且
        or            或者
        not           非
        需求:查詢id大於7的女同學
        示例:select * from student where id>7 and gender=0;
    d、模糊查詢
        insert into student values(0,"Bob",30,1,"北京",0);
        insert into student values(0,"Ba",20,1,"北京",0);
        like:
            %表示任意多個任意字元
            —表示一個任意字元
        需求:查詢以B為首的同學
        示例:
            select * from student where name like "B%";
            select * from student where name like "B_";
    e、範圍查詢
        in:表示在一個非連續的範圍內
        示例:select * from a where age in(18,20);
            a:表名
            age:列名
            select * from a where age 18 or 20;
        between。。。and。。。:表示在一個連續的範圍內
            示例:select * from a where age between 18 and 20;
                a:表名
                age:列名
                select * from a where age>=18 and age<=20;
        not between and 不在。。。之間
            示例:select * from a where age not between 18 and 20;
                a:表名
                age:列名
                select * from a where age<18 or age>20;
    f、空判斷
        insert into student(name,age) values("川普",70);
        注意:null 與 ""不同
        判斷空:is null
        判斷非空:is not null
        需求:查詢沒有地址的同學
        示例:select * from student where address is null;
        需求:查詢有地址的同學
        示例:select * from student where address is not null;
    g、優先順序
        小括號,not,比較運算子,邏輯運算子
        and 比or優先順序高,如果同時出現並希望先選or,需要結合()來使用

4、聚合

    為了快速等到統計資料,提供了5個聚合函式
    a、count(*)   表示計算總行數,括號中可以寫*和列名
    b、max(列)    表示求此列的最小值
    c、min(列)    表示求此列的最小值
    d、sum(列)    表示求此列的和
    e、avg(列)    表示求此列的平均值

    需求:查詢學生的總數
    示例:select count(*) from student; 
    需求:查詢女生的編號最大值
    示例:select max(id) from student where gender=0;
    需求:查詢女生編號的最小值
    示例:select min(id) from student where gender=0;
    需求:求所有學生的年齡和
    示例:select sun(age) from student;
    需求:查詢所有學生年齡的平均值
    示例:select avg(age) from student;

5、分組

    按照欄位分組,表示此欄位相同的資料會被放到一個集合中。
    分組後, 只能查詢出相同的資料列,對於有差異的資料列無法顯示在結果集中
    可以對分組後的資料進行統計,做聚合運算
    語法:select 列1,列2,聚合……from 表名 group by 列1,列2,列3,……;
    需求:查詢男女生總數
    示例:
        select gender,count(*) from student group by gender;
        select name,gender count(*) from student group by gender,age;

    分組後的資料篩選:select 列1,列2,聚合…… from 表名 group by 列1,列2,列3,……hanving 列1,……聚合……;
    示例:select gender,count(*) from student group by gender having gender;

    where和having的區別:
        where是對from後面的指定的表進行篩選,屬於對原始資料的篩選
        having是對group by 的結果進行篩選

6、排序

    語法:select * from 表名 order by 列1 asc|desc,列2 asc|desc,……;
    說明:
        a、將資料按照列1進行排序,如果某些列1的值相同,則按照列2進行排序
        b、預設按照從小到大的順序排序
        c、asc升序
        d、desc降序
    需求:將沒有被刪除的資料按年齡排序
    示例:
        select * from student where isDelete=0 order by age desc;
        select * from student where isDelete=0 order by age desc,id desc;

7、分頁

     語法:select * from 表名 limit start,count;
     說明:start索引從0開始
     示例:
         select * from student limit 0,3;
         select * from student limit 3,3;

七、關聯

多表聯查

    1) 隱式內連線查詢
        select * from goods,user where `user`.id=goods.uid and uid=1
        select `user`.id,`user`.username,goods,goodsname fom goods,user where `user`.id = goods,uid and uid=1
    2)顯式內連線查詢 inner join
        select * from user INNER JOIN goods on `user`.id=goods.uid and`user`.id=2
        說明:A表 inner join b表 on 條件
    3) 左關聯 left join
        select * from user LEFT JOIN goods on `user`.id=goods.uid and `user`.id=2
        注意:左關聯以左表為主表,右表為輔表,會將主表所有的資料查詢出來,輔表沒有關聯匹配上的資料,用null表示
    4)右關聯 right join
        select * from user RIGHT JOIN goods on `user`.id=goods.uid and `user`.id=2
        注意:左關聯以右表為主表,左表為輔表,會將主表所有的資料查詢出來,輔表沒有關聯匹配上的資料,用null表示

    5)分類
          1、表A inner join 表B:表A與表B匹配的行會出現在結果集中
          2、表A left join 表B:表A與表B匹配的行會出現在結果集中,外加表A中獨有的資料,未對應的資料使用null填充
          3、表A right join 表B: 表A與表B匹配的行會出現在結果集中,外加表B中獨有的資料,未對應的資料使用null填充

八、某些操作

當你輸入失誤的時候,可以用\c退出,重新輸入
mysql>show tables'
    '>\c
    '>\c    預設為引號內的內容,所以不會退出
    '>'     再加一個引號結束之後再用\c退出就可以
     >\c
mysql>

相關推薦

spring操作mysql數據庫

lose jar sna mark 操作mysql red 分享 wordpress rac 就是在spring中,對mysql數據庫進行增刪改查的樣例,很easy。 文件結構 maven的pom.xml文件,裏面用到的幾個很重要的jar包都有 <pro

Servlet操作數據庫

enter font emp nbsp app ima finally root oct 以下內容引用自http://wiki.jikexueyuan.com/project/servlet/database-access.html: 前提先新建數據庫及插入模擬數據:

C#項目操作Excel文件——使用NPOI庫

獲取 單擊 包含 pop code 紅色 oar 行數 發布 轉載自:http://blog.csdn.net/dcrmg/article/details/52356236# 感謝-牧野- 實際C#項目中經常會涉及到需要對本地Excel文件進行操作,特別是一些包含數據記錄、

JavaCookie常用操作類(Spring操作Cookie)

方法 .net str blog .cn shm efault csdn int 說明:Cookie下用Key取值沒有快速的方法,只能便利循環去取。 import java.util.HashMap; import java.util.Map; import

vue項目操作PDF文件

from code export ron ont back rom 之間 dem   以前從來沒接觸過前端要求顯示PDF文件,一時之間有點懵逼,不知從哪下手啊...   無奈之下,去找度娘,方法還不少,iframe embed object這些標簽就可以, 可是拿過來做

VIM操作

但是 b- linu 就是 sub wal 註釋 linux中 模式 VI中的多行刪除與復制 法一: 單行刪除,:1(待刪除行)d 多行刪除 ,:1,10d 法二: 光標所在行,dd 光標所在行以下的N行,Ndd 方法1: 光標放到第6行, 輸入:2yy 光標放到第9行,

第83天:jQuery操作form表單

所有 如果 方法 color 以及 標簽 cto 區別 移除 操作form表單 1、 屬性操作 設置屬性: // 第一個參數表示:要設置的屬性名稱 // 第二個參數表示:該屬性名稱對應的值 $(selector).attr(“title”, “傳智播客”); 獲取屬性: /

在DOS操作MySQL數據庫出現中文亂碼

登陸 code 查找 出現 解決 ini cli http 進行   1. 問題:最近使用到MySQL數據庫操作,在DOS下使用命令行向mysql中插入/讀取中文時出現亂碼問題。   2. 原因:由於CMD客戶端默認編碼為GBK,而本人在安裝MySQL時設置編碼為UTF-8

Python操作mysql的pymysql模塊詳解

安裝 5.6 alloc 就是 clas abs body .cn pda 文章轉自:https://www.cnblogs.com/wt11/p/6141225.html Python中操作mysql的pymysql模塊詳解 前言 pymsql是Python中操作MyS

python操作mysql

type let mys fetch python class hal log print import pymysql # 連接數據庫 connect = pymysql.Connect( host=‘localhost‘, port=3306,

C#操作數據庫技術之ExecuteNonQuery用法

pen cte assign == ted for 返回 簡單的 splay 最近在補基礎知識,剛好補到C#中對數據庫操作的一些技術,今天學習了ExecuteNonQuery的東西,看自己項目維護項目的代碼和網上資料查詢,基本上搞懂了ExecuteNonQuery的用法,小

SqlAlchemy 操作數據庫時session和scoped_session的區別

tro color war mapped 數據庫 大小 bind nes email 原生session: from sqlalchemy.orm import sessionmaker from sqlalchemy import create_engine from

在 Python代碼操作mysql數據

let pre pda name mysq div pos print count # 創建Connection連接 conn = connect(host=‘localhost‘, port=3306, user=‘root‘, password=‘mysql‘, dat

虛擬機操作系統的克隆方法及ip修改及硬件地址修改

修改ip 查看 mage 右鍵 地址 9.png 硬件 點擊 blog 2.點擊右鍵->管理->克隆->下一步->虛擬機當前狀態->創建完整虛擬機->修改虛擬機名稱 位置 3.修改主機名 4.修改主機名與ip的

【轉】Python操作mysql的pymysql模塊詳解

定義 padding 參數化查詢 finall 支持 順序 執行sql mysq syntax Python中操作mysql的pymysql模塊詳解 前言 pymsql是Python中操作MySQL的模塊,其使用方法和MySQLdb幾乎相同。但目前pymysql支持p

JAVA操作CLOB大對象 ,提示ORA-01704字符串文字太長

CLOB ORACEL java 分析:在ORACEL中大文本的不能直接插入,是因為oracle會將clob自動轉為String,當文本字節超出4000字節,提示字符太長。備註: GBK編碼:一個漢字占兩個字節。 UTF-16編碼:通常漢字占兩個字節,CJKV擴展B區、擴展C區、擴展D區中的漢字占

untiy操作obj

debug initial called call span col sca generic tar using System.Collections; using System.Collections.Generic; using UnityEngine; publi

javascript教程系列40:DOM操作樣式的兩種方式

AS color 單位 css 註意 pan col ntb javascrip 1 DOM中操作樣式的兩種方式 1 通過元素的style屬性 註意: 通過style屬性設置樣式時,css中要寫單位的屬性,在js代碼中也要加單位 //html <div id="bo

Python操作mysql知識(二)

python mysql 1.創建表Teacher:create table Teacher( teaId int not null, teaname varchar(100), age int, sex enum('M', 'F'), phone int);

如何在js或者jquery操作EL表達式的一個List集合

就是 layer http style use class urn details 表達式 ------------吾亦無他,唯手熟爾,謙卑若愚,好學若饑------------- 先說明此篇博客看明白了可以幹嘛: 就是在js或者jquery中操作一個EL表達式