How to include reserved characters in search criteria
Select * from product_text where contains (text_block,'$75') > 0
returns the same rows as
Select * from product_text where contains (text_block,'\$75') > 0
which, returns the same rows as
Select * from product_text where contains (text_block,'{$75}') > 0
How do we search for a string that includes $, which is a reserved character?
Any assistance is greatly appreciated.