2000-11-21 16:41:29 -07:00
|
|
|
use test;
|
|
|
|
drop table if exists test;
|
|
|
|
create table test (
|
|
|
|
test_set set( 'val1', 'val2', 'val3' ) not null default '',
|
|
|
|
name char(20) default 'O''Brien'
|
|
|
|
) comment = 'it\'s a table' ;
|
2000-12-07 07:54:59 -07:00
|
|
|
@r/shw000001.result show create table test ;
|