211
207
insert into t1 values (1),(2),(3);
214
208
delete from (select * from t1);
215
209
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '(select * from t1)' at line 1
216
210
insert into (select * from t1) values (5);