special character in where cluase
SELECT MANUFACTURER_ID FROM MANUFACTURER WHERE LOWER(MANUFACTURER_NAME) = LOWER('Rohde & Schwarz');
the above sql giving an error.. due to & symbol. how to re-write the same.
Thanks,
0
SELECT MANUFACTURER_ID FROM MANUFACTURER WHERE LOWER(MANUFACTURER_NAME) = LOWER('Rohde & Schwarz');
the above sql giving an error.. due to & symbol. how to re-write the same.
Thanks,