This is the code generated by Dezign. It looks (to me ) like all you have to do is load it into MySQL as a file but I have no idea what the command at the prompt would be.
Code..............
CREATE TABLE Student(
Student_ID VARCHAR(7) NOT NULL,
Name VARCHAR(30) NOT NULL,
Address VARCHAR(30),
City VARCHAR(20),
Province VARCHAR(2) NOT NULL,
PRIMARY KEY (Student_ID),
UNIQUE UC_Student_ID (Student_ID));
CREATE TABLE Course(
Course_ID DECIMAL(3,3) NOT NULL,
Name VARCHAR(30) NOT NULL,
Program VARCHAR(4) NOT NULL,
Instructor VARCHAR(20),
PRIMARY KEY (Course_ID),
UNIQUE UC_Course_ID (Course_ID));
CREATE TABLE Student_Courses(
Student_ID VARCHAR(7) NOT NULL,
Course_ID DECIMAL(3,3) NOT NULL,
Grade NUMERIC(4,1) NOT NULL,
FOREIGN KEY (Course_ID) REFERENCES Course (Course_ID),
FOREIGN KEY (Student_ID) REFERENCES Student (Student_ID));