`SELECT count(*) from table_name` ===> not supported, because there is only COUNT() in select list `SELECT count(*), min(num) from table_name` ===>supported, because there is more than COUNT()
SELECT count(*) from table_name===> not supported, because there is only COUNT() in select listSELECT count(*), min(num) from table_name===>supported, because there is more than COUNT()