标签: mysql hibernate
我尝试做类似
SELECT count(*) from (select distinct(col1, col2) from table);
使用hibernate和mysql。
我知道我不能在FROM子句中使用子查询。 除了query.list().size()或本地sql之外还有什么方法吗?
query.list().size()
由于