I'm trying to create a table but I keep getting errors:
Here are the errors:
mysql> source Tables3.sql;
Database changed
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 ')' at line 9
Here is the code:
use myDatabes;
CREATE TABLE Page3(
TeachingAndLearningCenter VARCHAR(30),
ConferenceWithInstructor VARCHAR(30),
ProblemSolvingSkills VARCHAR(30),
ConferenceWithCounselor VARCHAR(30),
ReadingSkills VARCHAR(30),
WritingSkills VARCHAR(30),
ComputationSkills VARCHAR(30),
);