Group By Clause
- Last Updated: March 2, 2015
- 1 minute read
- DataDirect Connectors
- JDBC
- Apache Spark SQL 6.0
- Documentation
The Group By clause is supported, with the following Entry SQL level restrictions:
- The COLLATE clause is not supported.
- SELECT DISTINCT is not supported.
- The grouping column reference cannot be an alias. The following queries
fail because
fcis an alias for theintcolcolumn:SELECT intcol AS fc, COUNT (*) FROM p_gtable GROUP BY fc SELECT f(col) as fc, COUNT (*) FROM table_name GROUP BY fc