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

MySQL

Development Platform:

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;