📄 存储过程.sql
字号:
select * from tblBookAttribute
insert into tblBookAttribute values('征订')
insert into Admin values('admin3','')
select * from ##temp
create trigger InsertBookInfo
on tblBookInfo
for Insert
as
begin
update tblBookIdTemp
set Id=(select inserted.ID from inserted);
end
create trigger InsertStorage
on tblBookStorage
for Insert
as
begin
drop table ##temp;
end
drop table ##temp
select * from sysobjects where id = object_id(N'[dbo].[Admin]')and OBJECTPROPERTY(id, N'IsUserTable')=1
select * from ##temp
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -