##創建 table student, 內涵 id ,name ,tel三種columne,設定id為primary key create table student ( id int primary key, name ), tel ), ) ##創建 table course,內涵 id ,name ,score三種columne,其中將id與student的id相綁 create table course ( id int, name ), score int, foreign key(i…