insert.test
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 0k
Category:

MySQL

Development Platform:

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;