📄 teacher_course.sql
字号:
if exists (select 1
from sysobjects
where id = object_id('teacher_course')
and type = 'U')
drop table teacher_course
go
/*==============================================================*/
/* Table: 教课 */
/*==============================================================*/
create table teacher_course (
Record_id int not null,
Teacher_id varchar(50) null,
Course_id varchar(50) null,
Course_year char(5) null,
constraint PK_teacher_course primary key (Record_id)
)
go
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -