We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SELECT count(*) from table_name ===> not supported, because there is only COUNT() in select list
SELECT count(*) from table_name
SELECT count(*), min(num) from table_name ===>supported, because there is more than COUNT()
SELECT count(*), min(num) from table_name