1 Star 0 Fork 82

宋友起 / 19级大二第一学期期末考试-动态Web应用-软件1班软件2班-考题

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
19级大二第一学期期末考试-动态Web应用-软件1软件2-初始结构及数据.sql 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
create database CMS
go
use CMS
go
create table Articles
(
Id int primary key not null identity,
Title nvarchar(80) not null,
Content nvarchar(max) null,
Author nvarchar(80) not null,
IsActived bit not null default 1,
IsDeleted bit not null default 0,
CreatedTime datetime not null default getdate(),
UpdatedTime datetime not null default getdate(),
Remarks nvarchar(800) null
)
go
create table Users
(
Id int primary key not null identity,
Username nvarchar(80) not null,
Password nvarchar(max) null,
IsActived bit not null default 1,
IsDeleted bit not null default 0,
CreatedTime datetime not null default getdate(),
UpdatedTime datetime not null default getdate(),
Remarks nvarchar(800) null
)
go
insert into Articles (Title,Content,Author) values ('你上头条啦','是什么重大新闻居然上头条?','老胡来啦')
,('一个老虎','有没有耳朵不知道','不知')
,('入门级显卡了解一下?','好用的不得了,经济实惠','佚名')
,('十一结婚太贵了','为什么贵,这我哪知道','国际小喇叭')
,('敞篷机你见过吗?','见也没见过,请指教','国内小喇叭')
go
insert into Users (Username,Password) values ('admin','123456'),('user01','123456')
go
1
https://gitee.com/song_you_qi/grade19_webforms_exam_pager.git
git@gitee.com:song_you_qi/grade19_webforms_exam_pager.git
song_you_qi
grade19_webforms_exam_pager
19级大二第一学期期末考试-动态Web应用-软件1班软件2班-考题
master

搜索帮助