select * from table1 where dbo.func(name)=""

解决方案 »

  1.   

    select * from table1 where dbo.func(name)=''
      

  2.   

    查询出错,显示
    Invalid object name 'dbo.func'在数据库中有一个存储过程:
    CREATE PROCEDURE func @a varchar(10)
     AS
    select left(@a,3)
    GO请问错在哪?谢谢
      

  3.   

    select * from table1 where dbo.func(name)=''

    select * from table1 where 库名.dbo.func(name)=''
      

  4.   

    仍然不对,显示找不到对象 库名.dbo.func
      

  5.   

    func为存储过程,不是函数,能用
    select * from table1 where dbo.func(name)=''
    不能这么写吧!!!!!!!!!!!!
      

  6.   

    select * from table1 where exec func(name)=''