From 397735feedb529ae759f963f7327c7e84ae1a19f Mon Sep 17 00:00:00 2001 From: unknown <2833605196@qq.com> Date: Fri, 16 Sep 2022 12:21:02 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E6=AC=A1=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\344\275\234\344\270\232/SQLQuery2.sql" | 33 ++++++++++ ...72\350\241\250\347\272\246\346\235\237.md" | 66 +++++++++++++++++++ 2 files changed, 99 insertions(+) create mode 100644 "\344\275\234\344\270\232/SQLQuery2.sql" create mode 100644 "\347\254\224\350\256\260/9.15\345\273\272\345\272\223\345\273\272\350\241\250\347\272\246\346\235\237.md" diff --git "a/\344\275\234\344\270\232/SQLQuery2.sql" "b/\344\275\234\344\270\232/SQLQuery2.sql" new file mode 100644 index 0000000..d1569d5 --- /dev/null +++ "b/\344\275\234\344\270\232/SQLQuery2.sql" @@ -0,0 +1,33 @@ + --创建表 + --部门信息表(sectionInfo) + create table sectionInfo( + SectionID int primary key identity(1,1), + sectionName varchar(10) not null + ); + insert into sectionInfo values('销售部'),('人事部'),('产品部'),('市场部'),('电商部'); + select * from sectionInfo + + --员工信息表(userInfo) + create table userInfo( + userNo int primary key identity(1,1) not null, + userName varchar(10) not null check(len(userName)>4) unique(userName), + userSex varchar(2) not null check(userSex='男' or userSex='女'), + userAge int not null check(len(userAge)>1 and len(userAge)<100), + userAddress varchar(50) default('湖北'), + userSection int references sectionInfo(SectionID), + ); + insert into userInfo(userName,userSex,userAge,userAddress,userSection) values + ('张三2222','男',22,'湖北',1), + ('李四1111 ','男',24,'湖北',2),('莉莉5555','女',21,'湖北',3), + ('菲菲6666','女',26,'湖北',4),('天天3333','男',25,'湖北',5); + select * from userInfo + --员工考勤表(workInfo) + create table workInfo( + workId int primary key identity(1,1) not null, + userId int references userInfo(userNo) not null, + workTime datetime not null, + workDescription varchar(40) not null check(workDescription='迟到' or workDescription='早退' + or workDescription='旷工'or workDescription='病假' or workDescription='事假') + ); + insert into workInfo values(1,'2022-03-29 12:25:46','早退'),(2,'2022-03-29 12:25:46','迟到'), + (3,'2022-03-29 12:25:46','旷工'),(4,'2022-03-29 12:25:46','病假'),(5,'2022-03-29 12:25:46','事假'); \ No newline at end of file diff --git "a/\347\254\224\350\256\260/9.15\345\273\272\345\272\223\345\273\272\350\241\250\347\272\246\346\235\237.md" "b/\347\254\224\350\256\260/9.15\345\273\272\345\272\223\345\273\272\350\241\250\347\272\246\346\235\237.md" new file mode 100644 index 0000000..976dcef --- /dev/null +++ "b/\347\254\224\350\256\260/9.15\345\273\272\345\272\223\345\273\272\350\241\250\347\272\246\346\235\237.md" @@ -0,0 +1,66 @@ +9.15寤哄簱寤鸿〃绾︽潫 + +1. + +if exists (select * from sys.databases where name='DBTEST') + drop database DBTEST + +鍒ゆ柇鏄惁鏈夊悓鍚嶆暟鎹簱锛屽鏋滄湁鍚屽悕鏁版嵁搴撳垯鍒犻櫎鍘熸湁鏁版嵁搴擄紙鎱庨噸鍒犻櫎锛 + +2. + + create database DBTEST 鍒涘缓鏁版嵁搴 + +3. + +create table 琛ㄥ悕锛堬級锛涘垱寤鸿〃 + +4. + +鏂板鏁版嵁 + +insert [into] 琛ㄥ悕(瀛楁鍚) values(鍊) + +[]涓殑鍐呭鍙湁鍙棤 + +鏂板鍒 + +alter table 琛ㄥ悕 add 鍒楀悕 varchar(20) + +濡傛灉娌$粰鍑哄垪鍚嶏紝榛樿鏄寜鐓ч『搴忎竴涓釜娣诲姞 + +5.娣诲姞澶栭敭 + +琛ㄥ唴娣诲姞 + +鍒楀悕 int references 鍏宠仈澶栭敭鐨勮〃鍚(鍒楀悕) + +琛ㄥ娣诲姞 + +淇敼琛ㄧ粨鏋 + +琛ㄥ悕 add constraint 绾︽潫鍚 foreign key(瑕佸紩鐢ㄧ殑瀛楁) references 涓婚敭琛(瀛楁) + +6.鍒犻櫎琛 + +drop table 琛ㄥ悕 + +7.闈炵┖ + +not null + +鑷 + +identity + +8.绾︽潫 + +primary key 涓婚敭 + +default 榛樿 + +unique 鍞竴 + +check 妫鏌 + +娌℃湁鐗瑰畾椤哄簭锛屽悓鏃剁敓鏁 \ No newline at end of file -- Gitee From 9c238cdc9add128d9e3bc8111671942fb4b333d2 Mon Sep 17 00:00:00 2001 From: unknown <2833605196@qq.com> Date: Mon, 19 Sep 2022 12:41:48 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E6=AC=A1=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A=E5=92=8C=E7=AC=94=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- advanced-sql | 1 + "\344\275\234\344\270\232/SQLQuery6.sql" | 46 ++++++++++ .../\346\237\245\350\257\2421.md" | 86 +++++++++++++++++++ 3 files changed, 133 insertions(+) create mode 160000 advanced-sql create mode 100644 "\344\275\234\344\270\232/SQLQuery6.sql" create mode 100644 "\347\254\224\350\256\260/\346\237\245\350\257\2421.md" diff --git a/advanced-sql b/advanced-sql new file mode 160000 index 0000000..397735f --- /dev/null +++ b/advanced-sql @@ -0,0 +1 @@ +Subproject commit 397735feedb529ae759f963f7327c7e84ae1a19f diff --git "a/\344\275\234\344\270\232/SQLQuery6.sql" "b/\344\275\234\344\270\232/SQLQuery6.sql" new file mode 100644 index 0000000..f7b076e --- /dev/null +++ "b/\344\275\234\344\270\232/SQLQuery6.sql" @@ -0,0 +1,46 @@ +--1. 查询出武汉地区所有的员工信息,要求显示部门名称以及员工的详细资料 +select * from People P +inner join Department D on P.DepartmentId=D.DepartmentId +where PeopleAddress='武汉' +--2. 查询出武汉地区所有的员工信息,要求显示部门名称,职级名称以及员工的详细资料 +select * from People P +inner join Department D on P.DepartmentId=D.DepartmentId +inner join Rank R on P.RankId=R.RankId +where PeopleAddress='武汉' +--3. 根据部门分组统计员工人数,员工工资总和,平均工资,最高工资和最低工资。 +select D.DepartmentName,count(D.DepartmentId)员工人数,SUM(P.PeopleSalary)员工工资总和,AVG(P.PeopleSalary)平均工资,MAX(P.PeopleSalary)最高工资,MIN(P.PeopleSalary)最低工资 from People P +inner join Department D on P.DepartmentId=D.DepartmentId +group by D.DepartmentName +--4. 根据部门分组统计员工人数,员工工资总和,平均工资,最高工资和最低工资,平均工资在10000 以下的不参与统计,并且根据平均工资降序排列。 +select D.DepartmentName,COUNT(D.DepartmentId)员工人数,SUM(P.PeopleSalary)员工工资总和,AVG(P.PeopleSalary)平均工资,MAX(P.PeopleSalary)最高工资,MIN(P.PeopleSalary)最低工资 from People P +inner join Department D on P.DepartmentId=D.DepartmentId +group by D.DepartmentName +having AVG(P.PeopleSalary)>=10000 +order by AVG(P.PeopleSalary) desc +--5. 根据部门名称,然后根据职位名称,分组统计员工人数,员工工资总和,平均工资,最高工资和最低工资 +select D.DepartmentName,R.RankName,count(D.DepartmentId)员工人数,SUM(P.PeopleSalary)员工工资总和,AVG(P.PeopleSalary)员工平均工资,max(P.PeopleSalary)最高工资,min(P.PeopleSalary)最低工资 from People P +inner join Department D on P.DepartmentId=D.DepartmentId +inner join Rank R on P.RankId=R.RankId +group by D.DepartmentName, R.RankName +--6.查询出巨蟹 6.22--7.22 的员工信息 +select * from People +where (MONTH(PeopleBirth)=6 and DAY(PeopleBirth)>=22) or (MONTH(PeopleBirth)=7 and DAY(PeopleBirth)<=22) +--7.查询所有员工信息,添加一列显示属相(鼠,牛,虎,兔,龙,蛇,马,羊,猴,鸡,狗,猪) +select *, +( + case + when YEAR(PeopleBirth)%12 =0 then '鼠' + when YEAR(PeopleBirth)%12 =1 then '牛' + when YEAR(PeopleBirth)%12 =2 then '虎' + when YEAR(PeopleBirth)%12 =3 then '兔' + when YEAR(PeopleBirth)%12 =4 then '龙' + when YEAR(PeopleBirth)%12 =5 then '蛇' + when YEAR(PeopleBirth)%12 =6 then '马' + when YEAR(PeopleBirth)%12 =7 then '羊' + when YEAR(PeopleBirth)%12 =8 then '猴' + when YEAR(PeopleBirth)%12 =9 then '鸡' + when YEAR(PeopleBirth)%12 =10 then '狗' + else '猪' + end +)属相 + from People \ No newline at end of file diff --git "a/\347\254\224\350\256\260/\346\237\245\350\257\2421.md" "b/\347\254\224\350\256\260/\346\237\245\350\257\2421.md" new file mode 100644 index 0000000..d54ca67 --- /dev/null +++ "b/\347\254\224\350\256\260/\346\237\245\350\257\2421.md" @@ -0,0 +1,86 @@ +--鏌ヨ鍏徃鍛樺伐鎵鍦ㄥ煄甯傦紙涓嶉渶瑕侀噸澶嶆暟鎹級 +--distinct +select distinct PeopleAddress from People + +--鏌ヨ鎵鏈夊憳宸ヤ俊鎭(鏍规嵁宸ヨ祫鎺掑簭(order by)锛岄檷搴忔帓鍒) +select * from People order by PeopleSalary desc + + +--鏌ヨ1980骞翠互鍚庡嚭鐢熺殑鍛樺伐淇℃伅 +select * from People where year(PeopleBirth)>=1980 + + +--鏌ヨ鍑哄法锜 6.22--7.22 鐨勫憳宸ヤ俊鎭 + +--鏌ヨ鍑哄拰璧典簯鍦ㄥ悓涓涓煄甯傜殑浜 + + +select * from People where PeopleAddress=(select peopleAddress from People where PeopleName='璧典簯') + +--鏌ヨ鍑虹數璇濆彿鐮佸紑澶138鐨勫憳宸ヤ俊鎭,绗4浣嶅彲鑳芥槸7锛屽彲鑳8 锛屾渶鍚庝竴涓彿鐮佹槸5 +select * from people +where PeoplePhone like '138[7-9]%5' --789 + +--鏌ヨ鍑虹數璇濆彿鐮佸紑澶133鐨勫憳宸ヤ俊鎭,绗4浣嶆槸2-5涔嬮棿鐨勬暟瀛 锛屾渶鍚庝竴涓彿鐮佷笉鏄2鍜3 +select * from people +where PeoplePhone like '138[2-5]%[^23]' + + +--姹傚嚭骞撮緞姣斿钩鍧囧勾榫勯珮鐨勪汉鍛樹俊鎭 +--骞冲潎骞撮緞锛氫粖骞-鍑虹敓骞翠唤 +select avg(year(getdate())-year(peoplebirth)) 骞冲潎骞撮緞 from People + +select * from people where (year(getdate())-year(peoplebirth))>(select avg(year(getdate())-year(peoplebirth)) 骞冲潎骞撮緞 from People) + +--骞冲潎宸ヨ祫 +select avg(PeopleSalary) 骞冲潎宸ヨ祫 from People + +--淇濈暀灏忔暟鐐瑰悗2浣 +--round(灏忔暟,淇濈暀浣嶆暟) +select round(avg(PeopleSalary),2) 骞冲潎宸ヨ祫 from People + +--convert 02154.13200 decimal(5,2):淇濈暀灏忔暟鍚2浣嶏紝鏈夋晥鏁板瓧鎬诲叡鏄5 + +--convert鍜宑ast 鍙互寮哄埗杞崲鏁版嵁绫诲瀷 +select convert(decimal(13,2),avg(PeopleSalary)) 骞冲潎宸ヨ祫 from People + +--cast +select cast(avg(PeopleSalary) as decimal(13,2)) 骞冲潎宸ヨ祫 from People + + +--鏍规嵁鍛樺伐鎵鍦ㄥ湴鍖哄垎缁勭粺璁″憳宸ヤ汉鏁帮紝鍛樺伐宸ヨ祫鎬诲拰锛屽钩鍧囧伐璧勶紝鏈楂樺伐璧勫拰鏈浣庡伐璧勶紝 +--瑕佹眰绛涢夊嚭鍛樺伐浜烘暟鑷冲皯鍦2浜哄強浠ヤ笂鐨勮褰曪紝骞朵笖1985骞村強浠ュ悗鍑鸿韩鐨勫憳宸ヤ笉鍙備笌缁熻銆 +--count(*):绌哄间篃缁熻 count(瀛楁)锛氬綋鍓嶅瓧娈电殑绌哄间笉缁熻 +select count(*) 鍛樺伐浜烘暟,sum(PeopleSalary) 宸ヨ祫鎬诲拰, max(PeopleSalary) 鏈楂樺伐璧,min(PeopleSalary) 鏈浣庡伐璧 from People +where year(PeopleBirth)<1985 +group by PeopleAddress +having count(*)>=2 + + +--鍒犻櫎鏁版嵁 +delete from People where PeopleName='铚楃墰' + +--鍒犻櫎 +--drop 鍒犻櫎鏁村紶琛 +--truncate鍒犻櫎鏁村紶琛紝琛ㄨ繕鍦 + +--鏍规嵁閮ㄩ棬鍒嗙粍缁熻鍛樺伐浜烘暟锛屽憳宸ュ伐璧勬诲拰锛屽钩鍧囧伐璧勶紝鏈楂樺伐璧勫拰鏈浣庡伐璧勶紝骞冲潎宸ヨ祫鍦10000 浠ヤ笅鐨勪笉鍙備笌缁熻锛屽苟涓旀牴鎹钩鍧囧伐璧勯檷搴忔帓鍒椼 +select count(*) 鍛樺伐浜烘暟, sum(PeopleSalary) 鍛樺伐宸ヨ祫鎬诲拰,convert(decimal(15,2),avg(PeopleSalary)) 骞冲潎宸ヨ祫 from Department de +join People po on de.DepartmentId = po.DepartmentId +group by po.DepartmentId having avg(PeopleSalary)>=10000 +order by 骞冲潎宸ヨ祫 desc + +create table B( + cid int primary key, + cname varchar(20) +) + + +create table A( + sid int, + sname varchar(10), + cid int references B(cid) +) + +select * from A +left join B on A.cid=B.cid \ No newline at end of file -- Gitee From bc59f9c47e932356ca4576eba9d0b4e0d972ff03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=A2=85=E9=A6=99?= <2833605196@qq.com> Date: Mon, 19 Sep 2022 17:25:02 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E7=AC=AC=E4=BA=8C=E6=AC=A1=E7=AC=94?= =?UTF-8?q?=E8=AE=B0=E5=92=8C=E4=BD=9C=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\344\275\234\344\270\232/BankTest.sql" | 107 ++++++++++++++++++ .../\344\275\234\344\270\232/SQLQuery2.sql" | 0 .../\344\275\234\344\270\232/SQLQuery6.sql" | 0 ...72\350\241\250\347\272\246\346\235\237.md" | 0 .../\346\237\245\350\257\2421.md" | 0 advanced-sql | 1 - 6 files changed, 107 insertions(+), 1 deletion(-) create mode 100644 "06\351\231\210\346\242\205\351\246\231/\344\275\234\344\270\232/BankTest.sql" rename "\344\275\234\344\270\232/SQLQuery2.sql" => "06\351\231\210\346\242\205\351\246\231/\344\275\234\344\270\232/SQLQuery2.sql" (100%) rename "\344\275\234\344\270\232/SQLQuery6.sql" => "06\351\231\210\346\242\205\351\246\231/\344\275\234\344\270\232/SQLQuery6.sql" (100%) rename "\347\254\224\350\256\260/9.15\345\273\272\345\272\223\345\273\272\350\241\250\347\272\246\346\235\237.md" => "06\351\231\210\346\242\205\351\246\231/\347\254\224\350\256\260/9.15\345\273\272\345\272\223\345\273\272\350\241\250\347\272\246\346\235\237.md" (100%) rename "\347\254\224\350\256\260/\346\237\245\350\257\2421.md" => "06\351\231\210\346\242\205\351\246\231/\347\254\224\350\256\260/\346\237\245\350\257\2421.md" (100%) delete mode 160000 advanced-sql diff --git "a/06\351\231\210\346\242\205\351\246\231/\344\275\234\344\270\232/BankTest.sql" "b/06\351\231\210\346\242\205\351\246\231/\344\275\234\344\270\232/BankTest.sql" new file mode 100644 index 0000000..1176d8e --- /dev/null +++ "b/06\351\231\210\346\242\205\351\246\231/\344\275\234\344\270\232/BankTest.sql" @@ -0,0 +1,107 @@ +create database BankTest; +go +use banktest; +go +--账户信息表:存储个人信息 +create table AccountInfo +( + AccountId int primary key identity(1,1), --账户编号 + AccountCode varchar(20) not null, --身份证号码 + AccountPhone varchar(20) not null, --电话号码 + RealName varchar(20) not null, --真实姓名 + OpenTime smalldatetime not null, --开户时间 +) +--银行卡表:存储银行卡信息 +create table BankCard +( + CardNo varchar(30) primary key, --银行卡卡号 + AccountId int not null, --账户编号(与账户信息表形成主外键关系) + CardPwd varchar(30) not null, --银行卡密码 + CardMoney money not null, --银行卡余额 + CardState int not null,--1:正常,2:挂失,3:冻结,4:注销 + CardTime smalldatetime default(getdate()) --开卡时间 +) +--交易信息表(存储存钱和取钱的记录) +create table CardExchange +( + ExchangeId int primary key identity(1,1), --交易自动编号 + CardNo varchar(30) not null, --银行卡号(与银行卡表形成主外键关系) + MoneyInBank money not null, --存钱金额 + MoneyOutBank money not null, --取钱金额 + ExchangeTime smalldatetime not null, --交易时间 +) +--转账信息表(存储转账信息记录) +create table CardTransfer +( + TransferId int primary key identity(1,1),--转账自动编号 + CardNoOut varchar(30) not null, --转出银行卡号(与银行卡表形成主外键关系) + CardNoIn varchar(30) not null, --转入银行卡号(与银行卡表形成主外键关系) + TransferMoney money not null,--交易金额 + TransferTime smalldatetime not null, --交易时间 +) +--状态信息变化表(存储银行卡状态变化的记录,状态有1:正常,2:挂失,3:冻结,4:注销) +create table CardStateChange +( + StateId int primary key identity(1,1),--状态信息自动编号 + CardNo varchar(30) not null, --银行卡号(与银行卡表形成主外键关系) + OldState int not null, --银行卡原始状态 + NewState int not null, --银行卡新状态 + StateWhy varchar(200) not null, --状态变化原因 + StateTime smalldatetime not null, --记录产生时间 +) + + + +--为刘备,关羽,张飞三个人进行开户开卡的操作 +--刘备身份证:420107198905064135 +--关羽身份证:420107199507104133 +--张飞身份证:420107199602034138 +insert into AccountInfo(AccountCode,AccountPhone,RealName,OpenTime) +values('420107198905064135','13554785425','刘备',GETDATE()) +insert into BankCard(CardNo,AccountId,CardPwd,CardMoney,CardState) +values('6225125478544587',1,'123456',0,1) + +insert into AccountInfo(AccountCode,AccountPhone,RealName,OpenTime) +values('420107199507104133','13454788854','关羽',GETDATE()) +insert into BankCard(CardNo,AccountId,CardPwd,CardMoney,CardState) +values('6225547858741263',2,'123456',0,1) + +insert into AccountInfo(AccountCode,AccountPhone,RealName,OpenTime) +values('420107199602034138','13456896321','张飞',GETDATE()) +insert into BankCard(CardNo,AccountId,CardPwd,CardMoney,CardState) +values('6225547854125656',3,'123456',0,1) + +select * from AccountInfo +select * from BankCard + + + +--进行存钱操作,刘备存钱2000元,关羽存钱:8000元,张飞存钱:500000元 +select * from AccountInfo +update BankCard set CardMoney = CardMoney + 2000 where CardNo = '6225125478544587' +insert into CardExchange(CardNo,MoneyInBank,MoneyOutBank,ExchangeTime) +values('6225125478544587',2000,0,GETDATE()) + +update BankCard set CardMoney = CardMoney + 8000 where CardNo = '6225547858741263' + +insert into CardExchange(CardNo,MoneyInBank,MoneyOutBank,ExchangeTime) +values('6225547858741263',8000,0,GETDATE()) + +update BankCard set CardMoney = CardMoney + 500000 where CardNo = '6225547854125656' +insert into CardExchange(CardNo,MoneyInBank,MoneyOutBank,ExchangeTime) +values('6225547854125656',500000,0,GETDATE()) + +--转账:刘备给张飞转账1000元 +update BankCard set CardMoney = CardMoney -1000 where CardNo = '6225125478544587' +update BankCard set CardMoney = CardMoney + 1000 where CardNo = '6225547854125656' + +insert into CardTransfer(CardNoOut,CardNoIn,TransferMoney,TransferTime) +values('6225125478544587','6225547854125656',1000,GETDATE()) + + + +select * from AccountInfo --个人信息 +select * from BankCard --银行卡信息 +select * from CardStateChange --银行卡状态更改表 +select * from CardTransfer --转账表 +select * from CardExchange --交易记录 \ No newline at end of file diff --git "a/\344\275\234\344\270\232/SQLQuery2.sql" "b/06\351\231\210\346\242\205\351\246\231/\344\275\234\344\270\232/SQLQuery2.sql" similarity index 100% rename from "\344\275\234\344\270\232/SQLQuery2.sql" rename to "06\351\231\210\346\242\205\351\246\231/\344\275\234\344\270\232/SQLQuery2.sql" diff --git "a/\344\275\234\344\270\232/SQLQuery6.sql" "b/06\351\231\210\346\242\205\351\246\231/\344\275\234\344\270\232/SQLQuery6.sql" similarity index 100% rename from "\344\275\234\344\270\232/SQLQuery6.sql" rename to "06\351\231\210\346\242\205\351\246\231/\344\275\234\344\270\232/SQLQuery6.sql" diff --git "a/\347\254\224\350\256\260/9.15\345\273\272\345\272\223\345\273\272\350\241\250\347\272\246\346\235\237.md" "b/06\351\231\210\346\242\205\351\246\231/\347\254\224\350\256\260/9.15\345\273\272\345\272\223\345\273\272\350\241\250\347\272\246\346\235\237.md" similarity index 100% rename from "\347\254\224\350\256\260/9.15\345\273\272\345\272\223\345\273\272\350\241\250\347\272\246\346\235\237.md" rename to "06\351\231\210\346\242\205\351\246\231/\347\254\224\350\256\260/9.15\345\273\272\345\272\223\345\273\272\350\241\250\347\272\246\346\235\237.md" diff --git "a/\347\254\224\350\256\260/\346\237\245\350\257\2421.md" "b/06\351\231\210\346\242\205\351\246\231/\347\254\224\350\256\260/\346\237\245\350\257\2421.md" similarity index 100% rename from "\347\254\224\350\256\260/\346\237\245\350\257\2421.md" rename to "06\351\231\210\346\242\205\351\246\231/\347\254\224\350\256\260/\346\237\245\350\257\2421.md" diff --git a/advanced-sql b/advanced-sql deleted file mode 160000 index 397735f..0000000 --- a/advanced-sql +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 397735feedb529ae759f963f7327c7e84ae1a19f -- Gitee