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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of refering to old values
  3. #
  4. drop table if exists t1;
  5. create table t1 (a int not null);
  6. insert into t1 values (1);
  7. insert into t1 values (a+2);
  8. insert into t1 values (a+3);
  9. insert into t1 values (4),(a+5);
  10. select * from t1;
  11. drop table t1;