当前位置: 代码迷 >> Sql Server >> 为什么要在子查询的系统表前面加上dbo呢解决方案
  详细解决方案

为什么要在子查询的系统表前面加上dbo呢解决方案

热度:8   发布时间:2016-04-27 15:52:24.0
为什么要在子查询的系统表前面加上dbo呢
if   exists   (select   *   from   dbo.sysobjects   where   id   =   object_id(N '[dbo].[usp_Getall] ')   and   OBJECTPROPERTY(id,   N 'IsProcedure ')   =   1)
drop   procedure   [dbo].[usp_Getall]

为什么要在子查询的系统表前面加上dbo呢?比如说:dbo.sysobjects   这是为什么啊!

------解决方案--------------------
表的所有者
  相关解决方案