OR を使用:
select * from yourTable where @test = '' OR Agent = @test
プレ>if @
test
null 値が付属しています (''
の代わりに) )、次を使用する必要があります:select * from yourTable where @test is null OR Agent = @test
プレ>
OR を使用:
select * from yourTable where @test = '' OR Agent = @test
プレ>if @
test
null 値が付属しています (''
の代わりに) )、次を使用する必要があります:select * from yourTable where @test is null OR Agent = @test
プレ>