在单机上能使用存储过程吗?如何创建和使用?(0分)

  • 主题发起人 主题发起人 笨人
  • 开始时间 开始时间

笨人

Unregistered / Unconfirmed
GUEST, unregistred user!
if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#tmptable'))
drop table #tmptable
else
select f ,identity(int,1,1) as ff into #tmptable from tt

...

请问:tempdb..sysobjects 和 id=object_id 及identity(int,1,1)是何作用?
 
Access可以。
你在查询视图所创建的视图或更新在TadoStoreProc的属性中找到了
 
后退
顶部