diff --git a/03.数据库/01.Mysql.md b/03.数据库/01.Mysql.md index e1130a5..68d7b10 100644 --- a/03.数据库/01.Mysql.md +++ b/03.数据库/01.Mysql.md @@ -1242,7 +1242,7 @@ select name,population from city where countrycode='CHN' and district='heilongji # 多条件查询 select name,population,countrycode from city where countrycode like '%H%' limit 10; # 模糊查询 - select id,name,population,countrycode from city order by countrycode limit 10; +select id,name,population,countrycode from city order by countrycode limit 10; # 排序查询(顺序) select id,name,population,countrycode from city order by countrycode desc limit 10; # 排序查询(倒序)