ハイみんな、
次の分割関数を使用しましたが、
CREATE FUNCTION dbo.Splitfn(@String varchar(8000), @Delimiter char(1))
returns @temptable TABLE (items varchar(8000))
as
begin
declare @idx int
declare @slice varchar(8000)
select @idx = 1
if len(@String)<1 or @String is null return
while @idx!= 0
begin
set @idx = charindex(@Delimiter,@String)
if @idx!=0
set @slice = left(@String,@idx - 1)
else
set @slice = @String
if(len(@slice)>0)
insert into @temptable(Items) values(@slice)
set @String = right(@String,len(@String) - @idx)
if len(@String) = 0 break
end
return
end
クエリでこの関数を使用し、実行されました
ALTER PROCEDURE [dbo].[Employees_Delete]
-- Add the parameters for the stored procedure here
@Id varchar(50)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
if exists( select Emp_Id from Employee where Emp_Id=dbo.Splitfn(@Id,','))
begin
update Employee set Is_Deleted=1 where Emp_Id=dbo.Splitfn(@Id,',')
select 'deleted' as message
end
END
しかし、値を与えるストアプロシージャを実行すると(1,2)と言うとエラーが発生しました
Cannot find either column "dbo" or the user-defined
function or aggregate "dbo.Splitfn", or the name is ambiguous.
テーブル値関数をチェックしましたが、関数 'splitfn'がありましたが、何が間違っているのかわかりませんか?助言がありますか..
これはテーブル値関数ですが、スカラー関数として使用しています。
試してください:
where Emp_Id IN (SELECT i.items FROM dbo.Splitfn(@Id,',') AS i)
しかし...また、パフォーマンスが向上するため、関数をインラインTVFに変更することも検討してください。
テーブルのようなudf値のテーブルをテーブルのように扱う必要があります。例えば、JOIN it
select Emp_Id
from Employee E JOIN dbo.Splitfn(@Id,',') CSV ON E.Emp_Id = CSV.items
一般的な答え
select * from [dbo].[SplitString]('1,2',',') -- Will work
しかし
select [dbo].[SplitString]('1,2',',') -- will not work and throws this error
人々はGoogleから来るので、適切なデータベースにいることを確認してください。
'master'データベースでSQLを実行すると、多くの場合このエラーが返されます。