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