mysql> create table temp(
-> sl serial not null,
-> d_t varchar(30) not null,
-> from varchar(30) not null,
-> to varchar(30) not null,
-> f_value double not null,
-> t_value double not null,
-> primary key(sl)
-> );
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'from varchar(30) not null, to varchar(30) not null, f_value double not null, t_v' at line 4
I have tried removing underscore, without space and caps, but the same error always happens.