insert_set.result 139 Bytes
Newer Older
1 2 3
drop database if exists foo;
create database foo;
use foo;
4
create table b (c int);
5 6
insert into foo.b set foo.b.c = '1';
drop database foo;