我有这个存储过程
USE [all_things]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[sp_getThingsByType]
@thingid int,
@typeid int
AS
DECLARE @Sql NVARCHAR(MAX) = 'SELECT * from items'
IF @thingid IS NOT NULL
BEGIN
SET @Sql += ' where thingid = @thingid'
END
IF @typeid IS NOT NULL
BEGIN
SET @Sql += ' and TypeID = @typeid'
END
EXEC sp_executesql @sql, N'@thingid int,@typeid int',@thingid=@thingid,@typeid=@typeid;
测试用例:
当我用
thingid
isnull
和typeid
is运行它时null
,我得到了所有完美的结果。当
thingid
提供了并且typeid
是null
时,结果是好的这是结果不好的地方:
thingid
isnull
和typeid
is 供应。一切都在归还。
我错过了什么?
谢谢