group_err.sql.out
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. QUERY: create table G_ERR (x int4, y int4, z int4);
  2. QUERY: select x from G_ERR group by y;
  3. x  
  4. -- 
  5. QUERY: select x, sum(z) from G_ERR group by y;
  6. WARN:parser: illegal use of aggregates or non-group column in target list
  7. QUERY: select x, count(x) from G_ERR;
  8. WARN:parser: illegal use of aggregates or non-group column in target list
  9. QUERY: select max(count(x)) from G_ERR;
  10. WARN:parser: aggregate can only be applied on an attribute
  11. QUERY: select x from G_ERR where count(x) = 1;
  12. WARN:parser: aggregates not allowed in WHERE clause
  13. QUERY: create table H_ERR (a int4, b int4);
  14. QUERY: select y, a, count(y), sum(b)
  15. from G_ERR, H_ERR
  16. where G_ERR.y = H_ERR.a group by y;
  17. WARN:parser: illegal use of aggregates or non-group column in target list
  18. QUERY: drop table G_ERR, H_ERR;