Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 522 Vote(s) - 3.45 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do I escape a percentage sign in T-SQL?

#1
This [question also has the answer][1], but it mentions DB2 specifically.

How do I search for a **string** using `LIKE` that already has a percent `%` symbol in it? The `LIKE` operator uses `%` symbols to signify wildcards.

[1]:

[To see links please register here]

Reply

#2
WHERE column_name LIKE '%save 50[%] off!%'
Reply

#3
Use brackets. So to look for 75%

WHERE MyCol LIKE '%75[%]%'

This is simpler than ESCAPE and common to most RDBMSes.
Reply

#4
You can use the code below to find a specific value.

WHERE col1 LIKE '%[%]75%'


When you want a single digit number after the% sign, you can write the following code.

WHERE col2 LIKE '%[%]_'
Reply

#5
You can use the `ESCAPE` keyword with `LIKE`. Simply prepend the desired character (e.g. '!') to each of the existing `%` signs in the string and then add `ESCAPE '!'` (or your character of choice) to the end of the query.

For example:

SELECT *
FROM prices
WHERE discount LIKE '%80!% off%' ESCAPE '!'

This will make the database treat 80% as an actual part of the string to search for and not 80(wildcard).

[Documentation on `LIKE`][1]

[1]:

[To see links please register here]

Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through