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

MySQL数据库

开发平台:

Visual C++

  1. # sel000002
  2. #
  3. # Versions
  4. # --------
  5. #   3.22
  6. #   3.23
  7. #
  8. # Description
  9. # -----------
  10. # This test is just a simple select.
  11. #
  12. DROP TABLE IF EXISTS t1;
  13. CREATE TABLE t1 (n INT);
  14. INSERT INTO t1 VALUES (1), (2), (3);
  15. @r/sel000002.result SELECT * FROM t1;
  16. drop table t1;