użyj LUB:
select * from yourTable
where @test = '' OR Agent = @test
jeśli @test
przychodzące z wartością null (zamiast ''
), należy użyć:
select * from yourTable
where @test is null OR Agent = @test
użyj LUB:
select * from yourTable
where @test = '' OR Agent = @test
jeśli @test
przychodzące z wartością null (zamiast ''
), należy użyć:
select * from yourTable
where @test is null OR Agent = @test