MySQL基礎 常見命令

2021-10-24 19:36:10 字數 954 閱讀 1273

一、停止與啟動

1…停止mysql

net stop mysql
2.啟動mysql

net start mysql
二、登入與退出mysql

1.登入

mysql -h localhost -p 3306

-u root -p

enter password:***

****

2.退出

exit
三、展示庫、表

#一定記得要新增分號

use test;

#檢視指定的資料庫中有哪些資料表

show

tables

;show

tables

from mysql;

#檢視 mysql 中有哪些個資料

show

databases

;

四、建表

create

table customer(

id varchar(30

),age int

, name varchar(30

),birthday date

);

五、檢視表結構

#desc 表名

desc customer;

六、刪除表

#drop table 表名

drop

table customer;

MySQL常見命令

mysql開啟第一步看有哪些資料庫 1.顯示資料庫命令 show databases 2.預設資料庫有 1.information schema 原資料庫資訊 2.mysql 資料庫使用者資訊 3.performance schema 收集效能資訊 4.test測試資訊 也屬於使用者資料庫 3.選擇...

mysql常見命令

1.檢視當前所有資料庫 show databases 2.開啟指定資料庫 use 庫名 3.檢視當前庫的所有表 show tables from 庫名 4.建立表 create table 表名 列名 列型別,列名 列型別,5.檢視表結構 desc 表名 6.檢視伺服器版本 方式一 登陸到mysql...

MySQL常見命令

檢視當前所有資料庫 show databases 開啟指定的庫 use 庫名 檢視當前庫的所有表 show tables 檢視其他庫的所有表 show tables from 庫名 建立表 create table 表名 列名 列型別 列明 列型別 檢視表結構 desc 表名 檢視伺服器版本 1 登...