sel000003.test
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # sel000003
  2. #
  3. # Versions
  4. # --------
  5. #   3.22
  6. #   3.23
  7. #
  8. # Description
  9. # -----------
  10. # This test is just a simple select.
  11. # Testing count() function and GROUP BY clause.
  12. #
  13. DROP TABLE IF EXISTS t1;
  14. CREATE TABLE t1 (name CHAR(20) NOT NULL PRIMARY KEY, score SMALLINT NOT NULL, KEY(score));
  15. INSERT INTO t1 VALUES ('Sasha', 20), ('Matt', 20), ('Monty', 10), ('David', 10), ('Tim', 10), ('Jeremy', 10);
  16. @r/sel000003.result SELECT COUNT(*) as n, score FROM t1 GROUP BY score;
  17. drop table t1;