参考了
https://blog.csdn.net/wd_9012/article/details/115692127
https://www.cnblogs.com/deepalley/p/13602825.html
但是没有一个唯一值的字段来排序怎么办??
正解是使用mysql 中的 any_value() 方法
select name,any_value(age) from table group by name
2022-11-12 19:09:47
参考了
https://blog.csdn.net/wd_9012/article/details/115692127
https://www.cnblogs.com/deepalley/p/13602825.html
但是没有一个唯一值的字段来排序怎么办??
正解是使用mysql 中的 any_value() 方法
select name,any_value(age) from table group by name
下一篇:在linux上运行c#程序