Mysql的常用命令

2021-10-08 12:24:47 字數 1827 閱讀 3320

mysql 常用命令

(1)登入

mysql –h 主機名 –u使用者名稱 –p密碼

c:/> mysql -h 192.168.1.45 -u root -p root

(2)顯示所有資料庫

mysql > show databases;

(3)進入指定的資料庫

use 庫名;

mysql > use mysql;

(4)檢視庫中所有表

show tables from 庫名;檢視其他庫中的所有表

mysql > show tables;

mysql > show tables from mysql;

(5)檢視當前庫

mysql > select database();

(6)檢視版本

c:/ > mysql -version //進入mysql客戶端之前

c:/ > mysql -v //進入mysql客戶端之前

mysql > select version(); //進入mysql客戶端之後

(7)新建乙個資料庫

mysql > create database spark;

(8)建表

mysql > create table customer(id varchar(30),age int, name varchar(30),birthday date);

(9)檢視表結構

mysql > desc customer;

(10)檢視表

mysql > select * from customer;

(11)查詢特定列

mysql > select id,name,*** from student

(12)查詢資料並進行過濾

mysql > select id,name,*** from student where id => 1003;

(13)運算子查詢

mysql > select id,name,*** from student where age >=18 and age <=35;

mysql > select id,name,*** from student where age between 18 and 35;

(14)查詢變種

mysql > select * from student where age =18 or age =35 or age =23

mysql > select * from student where age in (18,23,35);

mysql > select * from student where name like 『%小%』;

mysql > select * from student where name like 『_明%』;

mysql > select * from student where email is null;

mysql > select * from student where email is not null;

(16)修改表

mysql > update student set name=『小紅』 where id = 1001;

(17)刪除表記錄

mysql > delete from student where id =1001;

(18)刪除表

mysql > drop table customer;

刪除資料庫

mysql> drop database girls

(19)退出

一共三種方式

mysql > exit;

ctrl+c

quit;

mysql基本常用命令 MySQL常用命令(一)

cmd提示框中的mysql基礎命令 一 命令 連線mysql伺服器 mysql h localhost u root p 展示所有資料庫 show databases 選擇資料庫 use database 展示所選資料下所有表 show tables 設定資料庫編碼 set names gbk 用s...

mysql巡檢常用命令 mysql 常用命令

客戶端連線 進入命令列,windows cmd,連線 mysql u 使用者名稱 p密碼 h 伺服器ip位址 p 伺服器端mysql埠號 d 資料庫名 注意 1 伺服器端口標誌 p一定要大些以區別於使用者 p,如果直接連線資料庫標誌 d也要大寫 2 如果要直接輸入密碼 p後面不能留有空格如 pmyp...

mysql常用命令總結 mySql常用命令總結

總結一下自己常用的mysql資料庫的常用命令 mysql u root p 進入mysql bin目錄後執行,回車後輸入密碼連線。資料庫操作 1 create database dbname 建立資料庫,資料庫名為dbname 2 create database todo default chara...