Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8796643
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T23:40:13+00:00 2026-06-13T23:40:13+00:00

Short version: I need a function to escape strings for use in LIKE expressions,

  • 0

Short version: I need a function to escape strings for use in LIKE expressions, so fr_e%d becomes fr\_e\%d.


I’m looking for escape the result of a query without the need to use replace.
Because in this result I have path with this char _ inside. And because I use this result in a LIKE statement, it make the “_” a joker like start *.

I have to use LIKE because I’m doing some stuff concatenation in this same statement who need the fact that I use LIKE.

I tried ~ to replace LIKE but I will have the same problem with the char ‘.’ because ~ is to use regex just skip this solution too.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T23:40:14+00:00Added an answer on June 13, 2026 at 11:40 pm
    create function quote_like(text) returns text language sql immutable strict as
      $quote_like$
        select regexp_replace($1, $$[_%\\]$$, $$\\\&$$, 'g');
      $quote_like$;
    

    This function prepends all occurrences of _, % and \ in provided string with \. You can use it for example like this:

    select * from tablename
      where tablecolumn like
        '%'
        ||
        (select quote_like(substring) from substrings where substring_id=123)
        ||
        '%';
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The short version: I need to save mail from Exim to a networked directory,
Short version : I would like the maven-glassfish-plugin to only be executed in the
Short Version: I'm looking for a technique to keep nearly-sorted data in nearly-sorted order
Short version: In pure Java EE 6, is there something like Spring's Authentication Processing
Short version: I'm trying to figure out how to use the dsn argument in
Short version: For a cache class I need to get notified if an object
Short version: This prints 3, which makes sense because in Go strings are basically
Short version: Can I grant access to external databases to a role? Long version:
Short version : echo testing | vim - | grep good This doesn't work
Short version: I have a similar setup to StackOverflow. Users get Achievements. I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.