आपको भागने की जरूरत है
select * from mytable
where mycol like '5\% off' escape '\';
NO_BACKSLASH_ESCAPES मोड की परवाह किए बिना काम करने वाले संस्करण के लिए, आप पाइप जैसे किसी भिन्न वर्ण का उपयोग कर सकते हैं:
select * from mytable
where mycol like '5|% off' escape '|';