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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # test of unsigned int
  3. #
  4. drop table if exists t1;
  5. create table t1 (this int unsigned);
  6. insert into t1 values (1);
  7. insert into t1 values (-1);
  8. select * from t1;
  9. drop table t1;