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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of update and delete with limit
  3. #
  4. drop table if exists t1;
  5. create table t1 (a int primary key, b int not null);
  6. insert into t1 () values (); -- Testing default values
  7. insert into t1 values (1,1),(2,1),(3,1);
  8. update t1 set a=4 where b=1 limit 1;
  9. select * from t1;
  10. update t1 set b=2 where b=1 limit 2;
  11. select * from t1;
  12. update t1 set b=4 where b=1;
  13. select * from t1;
  14. delete from t1 where b=2 limit 1;
  15. select * from t1;
  16. delete from t1 limit 1;
  17. select * from t1;
  18. drop table t1;