mysql学习-初识mysql
一、數(shù)據(jù)庫的作用和分類
1 數(shù)據(jù)庫的作用
數(shù)據(jù)存儲(chǔ)
2 數(shù)據(jù)庫的優(yōu)勢(shì)
規(guī)范、查詢速度快
3 數(shù)據(jù)庫的分類
關(guān)系型數(shù)據(jù)庫:oracle、mysql、mysql server
非關(guān)系型數(shù)據(jù)庫:mongo
?
二、mysql的安裝
1.下載
https://dev.mysql.com/downloads/mysql/
2.安裝
解壓到路徑無中文的位置
3.初始化
初始化后,默認(rèn)用戶名root,密碼為空,初始化命令如下:
E:\mysql-8.0.12-winx64\bin\mysqld --initialize-insecure
4.設(shè)置環(huán)境變量
設(shè)置環(huán)境變量后,cmd中可直接輸入mysqld啟動(dòng)
5.設(shè)置windows服務(wù)
E:\mysql-8.0.12-winx64\bin\mysqld --install
加入服務(wù)后,可從windows中的服務(wù)啟動(dòng)停止mysql,也可使用命令
net start mysql
net stop mysql
?
三、mysql的使用
1 mysql組成
文件夾----數(shù)據(jù)庫
文件----表
數(shù)據(jù)行----行
2 數(shù)據(jù)庫操作
2.1 創(chuàng)建數(shù)據(jù)庫
create database 數(shù)據(jù)庫名 default charset 編碼;
create database test default charset utf8;?
2.2 查看數(shù)據(jù)庫
show databases;
2.3 刪除數(shù)據(jù)庫
? drop database 數(shù)據(jù)庫名;
2.4 用戶及權(quán)限設(shè)置
新建用戶
create user '用戶名'@'允許用戶登錄mysql的IP' ,可以使用通配符‘%’
1 create user 'test'@'localhost' identified by '123123'; 2 create user 'test'@'192.168.%' identified by '123123';?
刪除用戶
drop user?'用戶名'@'允許用戶登錄mysql的IP'?
drop user 'test'@'192.168.%';授權(quán)
grant 權(quán)限 on 數(shù)據(jù)庫.表 to '用戶名'@'允許的IP'
grant select on test.* to 'test'@'localhost';?
3.表操作
3.1 增
創(chuàng)建表t1
create table t1(id int,name char(10));創(chuàng)建表t2,并設(shè)置id為自增、主鍵
create table t2(id int auto_increment primary key,name char(10));創(chuàng)建表t3,設(shè)置id為自增、主鍵,編碼為utf8
create table t3(id int auto_increment primary key,name char(10)) default charset=utf8;創(chuàng)建表t4,設(shè)置id為自增、主鍵,編碼為utf8,使用引擎innodb
create table t4(id int auto_increment primary key,name char(10)) engine=innodb default charset=utf8;msyql支持的兩種引擎:
# innodb 支持事務(wù),原子性操作
# myisam myisam
char 和varchar的區(qū)別:
char:字段長(zhǎng)度不夠時(shí),會(huì)自動(dòng)補(bǔ)齊,查詢效率高,浪費(fèi)空間
varchar:字段長(zhǎng)度不夠時(shí),不會(huì)自動(dòng)補(bǔ)齊,查詢效率低,節(jié)省空間
盡量將變長(zhǎng)的字段放到后邊,可以提升查詢效率
?
3.2 刪
drop table t1;3.4 查
show tables;
4.行操作
4.1 增
insert into 表(需要插入的列) values(需要插入的值);
insert into t1(id,name) values(1,'user1');4.2 刪
刪除指定行
delete from t1 where id<3;清空表,保留自增列記錄
delete from t1;清空表,初始化自增列記錄
truncate table t1;?
4.3 改
update 表 set 列=更新的值 where 條件;
update t1 set name='user2' where name='user1';?
4.4 查
select 要查的列 from 表名;
select id,name from t1;
4.5 外鍵
當(dāng)一個(gè)表的某列需要和另一個(gè)表的某列做關(guān)聯(lián)時(shí),需要使用外鍵
create table score(sid int auto_increment primary key,student_id int,corse_id int,number int,constraint score_student_sid foreign key (student_id) references student(sid),constraint score_coures_cid foreign key (corse_id) references course(cid) )engine=innodb default charset=utf8;constraint 外鍵名 foreign key (外鍵字段) references 表(字段);
?
轉(zhuǎn)載于:https://www.cnblogs.com/ershoupaoche/p/9810866.html
總結(jié)
以上是生活随笔為你收集整理的mysql学习-初识mysql的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用canvas绘制楼梯(canvas直
- 下一篇: RabbitMq集群使用Nginx做负载