1 2 3 4 5 6 7 8 9
/* custom error: Table "a" does not exist */ use plato; insert into @a select 1 as t; commit; select * from @a; select * from a;