207
211
insert into t1 values (1),(2),(3);
208
214
delete from (select * from t1);
209
215
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
210
216
insert into (select * from t1) values (5);