Usamos
0 = 0
ou, normalmente, 1 = 1
como um stub :select *
from My_Table
where 1 = 1
Então, quando você escreve filtros, você pode fazer isso adicionando/comentando linhas simples :
-- 3 filters added
select *
from My_Table
where 1 = 1
and (Field1 > 123) -- 1st
and (Field2 = 456) -- 2nd
and (Field3 like '%test%') -- 3d
A próxima versão, digamos, será com dois filtros removidos:
-- 3 filters added, 2 (1st and 3d) removed
select *
from My_Table
where 1 = 1
-- and (Field1 > 123) -- <- all you need is to comment out the corresponding lines
and (Field2 = 456)
-- and (Field3 like '%test%')
Agora vamos restaurar o filtro 3d de maneira muito fácil:
-- 3 filters added, 2 (1st and 3d) removed, then 3d is restored
select *
from My_Table
where 1 = 1
-- and (Field1 > 123)
and (Field2 = 456)
and (Field3 like '%test%') -- <- just uncomment