Mysql常用命令day01

2021-10-08 15:32:15 字數 2082 閱讀 6546

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

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

mysql > show databases;

use 庫名;

mysql > use mysql;

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

mysql > show tables;

mysql > show tables from mysql;

mysql > select database();

c:/ > mysql -version      //

進入mysql

客戶端之前

c:/ > mysql -v          //

進入mysql

客戶端之前

mysql > select version();   //

進入mysql

客戶端之後

mysql > create database spark;

mysql > create table customer(id varchar(30

),age int, name varchar(30

),birthday date);

mysql > desc customer;

mysql > select * from customer;

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

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

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

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

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;

mysql > select * from student order by age     ;//

公升序 mysql > select * from student order by age desc  ;//

降序 %匹配任意多個字元,_只匹配乙個字元

mysql > insert into student(id,name) values(1001, '

小明');

varchardate型的資料要用單引號引起來

mysql > update student set name='

小紅' where id = 1001;

mysql > delete from student where id =1001;

mysql > drop table

customer;

刪除資料庫

mysql> drop database girls

一共三種方式

mysql > exit;

ctrl+c

quit;

day01 基本dos命令

選單 windows系統 命令提示符 win r cmd回車 在任意資料夾按shift鍵 滑鼠右鍵 在此處開啟powershell視窗 在任意目錄前輸入cmd回車 碟符切換 碟符 檢視本盤或本資料夾下所有檔案 dir directory 切換目錄 cd d空格檔案路徑 如 cd d 考研 小亮 ch...

Mysql學習日記day01

1.進入 mysql,在命令列中輸入 mysql uroot p 其中 表示密碼 2.檢視 mysql 中有哪些個資料庫 show databases 3.使用乙個資料庫 use 資料庫名稱 4.新建乙個資料庫 create database 資料庫名 5.檢視指定的資料庫中有哪些資料表 show ...

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

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