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