Skip to content

Commit 34e5513

Browse files
committed
修改了数据库相关文档
1 parent b997b13 commit 34e5513

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Day36-40/关系型数据库MySQL.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
1. DDL
3131

3232
```SQL
33-
3433
-- 创建数据库SRS
3534
drop database if exists SRS;
3635
create database SRS default charset utf8;
@@ -117,7 +116,6 @@
117116
2. DML
118117

119118
```SQL
120-
121119
-- 插入学院数据
122120
insert into tb_college
123121
(collname, collmaster, collweb) values
@@ -194,7 +192,6 @@
194192
3. DQL
195193

196194
```SQL
197-
198195
-- 查询所有学生信息
199196
select * from tb_student;
200197
select stuid, stuname, stusex, stubirth, stuaddr, collid
@@ -316,7 +313,6 @@
316313
4. DCL
317314

318315
```SQL
319-
320316
-- 创建名为hellokitty的用户
321317
create user 'hellokitty'@'localhost' identified by '123123';
322318

0 commit comments

Comments
 (0)