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

MySQL数据库

开发平台:

Visual C++

  1. use test;
  2. drop table if exists t1;
  3. create table t1 (
  4.   test_set set( 'val1', 'val2', 'val3' ) not null default '',
  5.   name char(20) default 'O''Brien'
  6.   ) comment = 'it's a table' ;
  7. @r/shw000001.result show create table t1 ;
  8. drop table t1;