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

数据库系统

开发平台:

Unix_Linux

  1. ---------------------------------------------------------------------------
  2. --
  3. -- sqlcompat.sql-
  4. --    test aliases for SQL basic types and aggregates
  5. --
  6. --
  7. -- Copyright (c) 1994-5, Regents of the University of California
  8. --
  9. -- $Id: sqlcompat.sql,v 1.1.1.1 1996/07/09 06:22:30 scrappy Exp $
  10. --
  11. ---------------------------------------------------------------------------
  12. -- check aliases for data types
  13. create table st1 (x int, y integer, z int4);
  14. insert into st1 values (1);
  15. insert into st1 values (10);
  16. select * from st1;
  17. create table st2 (x smallint, y int2);
  18. insert into st2 values (1);
  19. insert into st2 values (10);
  20. select * from st2;
  21. create table st3 (x float, y real, z float4);
  22. insert into st3 values (1);
  23. insert into st3 values (10);
  24. select * from st3;
  25. create table st4 (x float8);
  26. insert into st4 values (1);
  27. insert into st4 values (10);
  28. select * from st4;
  29. -- check aliases for aggregate names
  30. select max(x) from st1;
  31. select min(x) from st1;
  32. select sum(x) from st1;
  33. select avg(x) from st1;
  34. select max(x) from st2;
  35. select min(x) from st2;
  36. select sum(x) from st2;
  37. select avg(x) from st2;
  38. select max(x) from st3;
  39. select min(x) from st3;
  40. select sum(x) from st3;
  41. select avg(x) from st3;
  42. select max(x) from st4;
  43. select min(x) from st4;
  44. select sum(x) from st4;
  45. select avg(x) from st4;
  46. drop table st1;
  47. drop table st2;
  48. drop table st3;
  49. drop table st4;