I'm using the command line using standard SQL getting an error with anything I do to the database I created.
mysql> newtable
-> create table Person (Name VarChar(50) not null);
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 'newtable'
create table Person (Name String not null)' at line 1
Any advice into what I'm doing wrong?