diff --git "a/Day36-40/\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223MySQL.md" "b/Day36-40/\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223MySQL.md" index 223213b53f23f74aa16ed929cc6514a47c003b7b..8c88407cff34a5f2045a29d31d9169a0ed9c665e 100644 --- "a/Day36-40/\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223MySQL.md" +++ "b/Day36-40/\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223MySQL.md" @@ -30,7 +30,6 @@ 1. DDL ```SQL - -- 创建数据库SRS drop database if exists SRS; create database SRS default charset utf8; @@ -117,7 +116,6 @@ 2. DML ```SQL - -- 插入学院数据 insert into tb_college (collname, collmaster, collweb) values @@ -194,7 +192,6 @@ 3. DQL ```SQL - -- 查询所有学生信息 select * from tb_student; select stuid, stuname, stusex, stubirth, stuaddr, collid @@ -316,7 +313,6 @@ 4. DCL ```SQL - -- 创建名为hellokitty的用户 create user 'hellokitty'@'localhost' identified by '123123';