qfedu-linux-advanced-level/day9/create_course.sql

7 lines
158 B
MySQL
Raw Permalink Normal View History

2023-08-24 17:18:04 +08:00
-- comment 表示字段的说明 (备份)
create table t_course(
cid int,
name varchar(50) comment '课程名',
tid int comment '教师编号'
);