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

MySQL数据库

开发平台:

Visual C++

  1. # sel000033
  2. #
  3. # Versions
  4. # --------
  5. #   3.22
  6. #   3.23
  7. #
  8. # Description
  9. # -----------
  10. # test for a bug with in() and unique key
  11. drop table if exists t1;
  12. create  table t1 (id int(10) primary key);
  13. insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9);
  14. @r/sel000033.result select id from t1 where id in (2,5,9) ;
  15. @r/sel000033.result select id from t1 where id=2 or id=5 or id=9 ;
  16. drop table t1;