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

数据库系统

开发平台:

Unix_Linux

  1. ---------------------------------------------------------------------------
  2. --
  3. -- group_err.sql-
  4. --    test illegal use of GROUP BY (with aggregates)
  5. --
  6. --
  7. -- Copyright (c) 1994-5, Regents of the University of California
  8. --
  9. -- $Id: group_err.sql,v 1.1.1.1 1996/07/09 06:22:30 scrappy Exp $
  10. --
  11. ---------------------------------------------------------------------------
  12. create table G_ERR (x int4, y int4, z int4);
  13. select x from G_ERR group by y;
  14. select x, sum(z) from G_ERR group by y;
  15. select x, count(x) from G_ERR;
  16. select max(count(x)) from G_ERR;
  17. select x from G_ERR where count(x) = 1;
  18. create table H_ERR (a int4, b int4);
  19. select y, a, count(y), sum(b) 
  20. from G_ERR, H_ERR 
  21. where G_ERR.y = H_ERR.a group by y;
  22. drop table G_ERR, H_ERR;