Używamy 0 = 0
lub zwykle 1 = 1
jako stub :
select *
from My_Table
where 1 = 1
Więc kiedy piszesz filtry, możesz to zrobić, dodając/komentując pojedyncze wiersze :
-- 3 filters added
select *
from My_Table
where 1 = 1
and (Field1 > 123) -- 1st
and (Field2 = 456) -- 2nd
and (Field3 like '%test%') -- 3d
Na przykład następna wersja będzie miała dwa usunięte filtry:
-- 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%')
Teraz przywróćmy filtr 3D w bardzo prosty sposób:
-- 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