ERROR 42S22: Unknown column 'test.t1.b' in 'field list'
23
23
select count(*),b from t1;
24
24
ERROR 42S22: Unknown column 'b' in 'field list'
25
25
drop table t1;
26
create table t1 (a int(256));
27
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 '(256))' at line 1
26
28
create table t1 (a varchar(66000));
27
29
ERROR 42000: Column length too big for column 'a' (max = 16383); use BLOB or TEXT instead