MySQL資料命令

2022-06-01 04:15:10 字數 1673 閱讀 3327

一、資料庫操作

建立資料庫

create database db1 charset utf8;

檢視資料庫

show database;

show create database db1;

select

database();

選擇資料庫

use db1;

刪除資料庫

drop database db1;

修改資料庫

alter database db2 charset utf8;

二、表的建立與資料的插入

使用者表

create table user(

id int,

user varcher(

16) not null

unique,

pwd varcher(

32) not null

foreign key(group_id) references group(id)

);使用者表的新增

insert into user(user,pwd,group_id) values

('冬馬和紗

','123

','1'),

('小母豬雪菜

','123

','1'),

('北原春希

','123

','2'),

('','',''

);

使用者組表

create table group(

id intprimary key auto_increment,

group_name varcher(16)

);多對多表

三、表查詢

連表查詢

select user.id,user.name,group_name from

user inner join group on user.group_id=group.id;

子查詢

select user.name from user where group_id in

(select id from group where group_name='

敗犬組');

阿里雲 mysql 命令 mysql資料庫命令列

mysql資料庫命令列 雲伺服器 elastic compute service,簡稱ecs 是阿里雲提供的效能卓越 穩定可靠 彈性擴充套件的iaas infrastructure as a service 級別雲計算服務。雲伺服器ecs免去了您採購it硬體的前期準備,讓您像使用水 電 天然氣等公共...

Mysql用SQL命令檢視Mysql資料庫大小

要想知道每個資料庫的大小的話,步驟如下 1 進入information schema 資料庫 存放了其他的資料庫的資訊 use information schema 2 查詢所有資料的大小 select concat round sum data length 1024 1024 2 mb as d...

mysql 匯入匯出資料命令

更靈活,匯出 select from table name into outfile c path filename.txt 匯入 load data local infile file name.txt into table tbl name 備份表 mysqldump h111.111.11.1...