02-02-周一_08-43-22

This commit is contained in:
AaronXu
2026-02-02 08:43:22 +08:00
parent 8210588144
commit 5598cceabd

View File

@@ -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;
# 排序查询(倒序)