here's my statement
create table Eli
(
page_number char (2) not null primary key,
num_of_images char(3),
big_image char(1),
page_text text
);
I get the following error message
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 'NOT NULL PRIMARY KEY , num_of_images char( 3 ) , big_image
I'm confused. This should be easy😕
Thanks