mysql - Error 1064 (42000) Stumped on my create table -


create table chgtaxes   (     po_no char(8) not null,     change smallint not null,     line_no smallint not null,     stax_rate decimal(6,5) not null,     utax_rate decimal(6,5) not null    );  create unique index chgtax_1 on chgtaxes (po_no, change, line_no); 

i'm not sure issue in statement. seems popping on other tables , feel problems related. please!

edit:

here actual error:

enter image description here

found there stark difference in number of reserved words last time built database. able resolve issues.


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -