home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 May (DVD) / Macworld Resource DVD May 2003.toast / Data / Software / Bonus / Database / mysql-max-3.23.55.sit / mysql-max-3.23.55-apple-darwi.1 / mysql-test / t / sel000002.test < prev    next >
Encoding:
Text File  |  2003-01-21  |  244 b   |  18 lines  |  [TEXT/ttxt]

  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.  
  13. DROP TABLE IF EXISTS t1;
  14. CREATE TABLE t1 (n INT);
  15. INSERT INTO t1 VALUES (1), (2), (3);
  16. SELECT * FROM t1;
  17. drop table t1;
  18.