数据库菜鸟入门中

#查找一张表中某字段最大值的数据
#比如查找version的最大值的一行,用max函数
select * from blog_info where version=(select max(version) from blog_info);

猜你喜欢

转载自blog.csdn.net/qq_25858235/article/details/79677751