From 5598cceabd0deee6251a664a21a72c4b0d3d60ed Mon Sep 17 00:00:00 2001 From: AaronXu <718827633@qq.com> Date: Mon, 2 Feb 2026 08:43:22 +0800 Subject: [PATCH] =?UTF-8?q?02-02-=E5=91=A8=E4=B8=80=5F08-43-22?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 03.数据库/01.Mysql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; # 排序查询(倒序)