I am getting an error for my mysql query and I have no idea why. I am following exactly what is in my sql programming book and couldn't figure it out online either.
I appreciate any help!
CREATE TABLE account (
`ID` varcahr(5) NOT NULL ,
`Names` varchar(30) NULL,
`Balance` decimal(10,2) NULL,
PRIMARY KEY (ID)
);```