मैं आपको सही नहीं समझता, लेकिन मुझे यह आपकी मदद करेगा
आप एस्केप आइडेंटिफ़ायर का उपयोग कर सकते हैं
--Queries
-- for %
select * from test_a where col1 like '%\%%' escape '\';
--for _
select * from test_a where col1 like '%\_%' escape '\';
मैं आपको सही नहीं समझता, लेकिन मुझे यह आपकी मदद करेगा
आप एस्केप आइडेंटिफ़ायर का उपयोग कर सकते हैं
--Queries
-- for %
select * from test_a where col1 like '%\%%' escape '\';
--for _
select * from test_a where col1 like '%\_%' escape '\';