1 Star 0 Fork 82

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

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
19级大二第一学期期末考试-动态Web应用-软件1软件2-初始结构及数据.sql 1.20 KB
Copy Edit Raw Blame History
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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/LinYuanIce/grade19_webforms_exam_pager.git
git@gitee.com:LinYuanIce/grade19_webforms_exam_pager.git
LinYuanIce
grade19_webforms_exam_pager
19级大二第一学期期末考试-动态Web应用-软件1班软件2班-考题
master

Search