⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 t_course.sql

📁 基于C#语言的一个教务网数据库系统开发案例的源代码 ,很实用哦
💻 SQL
字号:

if exists (select 1
            from  sysobjects
           where  id = object_id('course')
            and   type = 'U')
   drop table course
go
/*==============================================================*/
/* Table: 课程                                                    */
/*==============================================================*/
create table course (
Course_id            varchar(50)          not null,
Course_name          varchar(50)          not null,
Course_period        int                  not null,
Course_credit        int                  not null,
Course_kind          int                  not null,
Course_describe      varchar(50)          not null,
constraint PK_course primary key  (Course_id)
)
go

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -