I had a table in Oracle database that contains id, name fields.
It's data is:
123,'South'
121,'East'
445,'Africa & World'
When I select rows using where clause like
select * from where name = 'Africa & World';
Oracle Asks for a Substitution Variable and no records are returned.
Kindly tell me to further clarify my question.
Regards