nationavon
MIS
My sql statement looks like this:
SELECT TICK_NUM FROM TICKET_RESO WHERE TICK_GROUP_ID='0' AND TICK_STAT='1' AND TICK_RESO='Not Specified';
The TICK_RESO field is a clob. If I remove AND TICK_RESO='Not Specified' from the statement everything it works. Any help would be appreciated.
SELECT TICK_NUM FROM TICKET_RESO WHERE TICK_GROUP_ID='0' AND TICK_STAT='1' AND TICK_RESO='Not Specified';
The TICK_RESO field is a clob. If I remove AND TICK_RESO='Not Specified' from the statement everything it works. Any help would be appreciated.