我对SQL服务器有点新鲜
我创建了一个执行以下操作的SP
begin
creates temp table
inserts into temp table from another table with criteria
right joins temp table to another table to return results
end
当我执行SP时,临时表的结果都为空。 我最初把它作为一个用GO分隔的批处理sql,工作正常。 当我将它包装到SP并删除GO时,连接的临时表部分都是NULL
有什么想法吗?