代码拉取完成,页面将自动刷新
同步操作将从 19级软件1班/19级大二第一学期期末考试-动态Web应用-软件1班软件2班-考题 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。