blob: 6b24d8a44c7380b40c8d0df1cdc89f07ff0b8aff (
plain)
1
2
3
4
5
6
7
8
|
use test;
drop table if exists t1;
create table t1 (
test_set set( 'val1', 'val2', 'val3' ) not null default '',
name char(20) default 'O''Brien'
) comment = 'it\'s a table' ;
show create table t1 ;
drop table t1;
|