代码拉取完成,页面将自动刷新
同步操作将从 20级软件开发4班/SQL Server作业仓库 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
create database staff--创建职工数据库
use staff
go
create table staffinfo--创建职工数据表
(
staffid int identity primary key not null,--职工工号
staffname nvarchar(20) not null,--职工姓名
staffsex varchar(2) not null,--职工性别
staffgrate nvarchar(10) default(1) not null,--职工等级,当职工等级为一时则为新员工
staffphone nvarchar(20),--职工电话
staffadd nvarchar(max)--职工住址
);
go
---------
--使用职工数据
select * from staffinfo
go
--职工信息备份
select staffid,staffname,staffsex,staffgrate,staffphone,staffadd
into staffinfo1
from staffinfo
go
select * from staffinfo1
--添加部分新职工数据
insert into staffinfo(staffname,staffsex,staffgrate)
values('小曹','男',1),
('小李','女',1),
('小伟','男',1)
--删除旧职工数据
insert into staffinfo(staffname,staffsex,staffgrate)
values('小啥','男',1),
('小危','女',1),
('小望','男',1)
select * from staffinfo
--删除退休职工记录
delete from staffinfo where staffid=4
------------------
create table staffsalarise--创建职工工资表
(
staffsaid int identity references staffinfo(staffid) ,
staffsalarises nvarchar(8),
staffsagood nvarchar(8)
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。