Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在休眠中按查询分组(例如 Select column1,column2,min(value) from Foo_Bar where value> 100 group by (Column1,Column2))?我想按部分分组多个列。
select f.column1, f.column2, min(f.value) from FooBar f where f.value > 100 group by f.column1, f.column2