Consider these options
select * from "abc_table" where "Some_Field" = 'Abc' select * from "abc_table" where "Some_Field" like 'Abc' select * from "abc_table" where "Some_Field" containing 'Abc' select * from "abc_table" where upper("Some_Field") = 'ABC'
This example is from Triggers in Firebird which provides a very good description of triggers.
CREATE OR ALTER TRIGGER BIU_EMPLOYEES FOR EMPLOYEES BEFORE INSERT OR UPDATE AS BEGIN NEW.LASTNAME_UPPER = UPPER (NEW.LASTNAME); END;Author: Robert Clemenzi - clemenzi@cpcug.org