Solved
SQL query with & in where clause
How do we handle a SQL query with & in the where clause? The table is present in external database
For example
Select * from TABLENAME where NAME='Tom & Jerry';
This doesn't respond back with results even though there are rows in the TABLE with NAME as 'Tom & Jerry'.
Facing this issue with RD generated queries as well.