1. 程式人生 > 實用技巧 >MySQL常見命令

MySQL常見命令

一、檢視所以資料庫型別

show databases; # 一共包含4個基本庫,前三個表不能改,第四個可以
# information_schema
# mysql
# performance_schema
# test 可以自由建立表

二、進入特定資料庫--> 檢視資料庫裡面的表

 # use + 特定庫名
use test;
show tables;

#在一個庫裡面,想檢視另外一個庫的表格
show tables from mysql;
# 檢視自己此時的位置
select database();

三、在基本庫中建立表格,及其基本操作

creat table stuinfo( id int
, name varchar(20));
# 查看錶的結構
desc + 表名;
desc stuinfo;
#查看錶裡的資料
select * from stuinfo;
# 插入資料
insert into stuinfo(id,name) values(1,"panyan") #插入資料,改變資料,資料會一直保留在本地。
#修改已經插入的資料
update stuinfo set name="nibaba" where id=1;
#刪除插入的資料
delete from stuinfo where id=1;

四、常見命令總結

# 檢視所有當前資料庫
show databases;

#開啟指定庫
use
庫名 #檢視當前庫的所有表 show tables; #檢視其他庫的所有表格 show tables from 庫名; #建立表 create tables 表名( 列名 列型別, 列名 列型別); #查看錶結構 desc 表名;