Tagged Questions
13
votes
4answers
22k views
List of special characters for SQL LIKE clause
What is the complete list of all special characters for a SQL (I'm interested in SQL Server but other's would be good too) LIKE clause?
E.g.
SELECT Name FROM Person WHERE Name LIKE '%Jon%'
SQL ...
3
votes
8answers
2k views
SqlServer: Like vs. “=” for matching strings
Whenever I write a stored procedure for selecting data based on string variable (varchar, nvarchar, char) I would have something like:
procedure dbo.p_get_user_by_username(
@username ...
2
votes
4answers
5k views
How to use like condition with multiple values in sql server 2005?
I need to filter out records based on some text matching in nvarchar(1000) column.
Table has more than 400 thousands records and growing. For now, I am using Like condition:-
SELECT
*
FROM
...
2
votes
2answers
73 views
Query related data based on “like” statement
I have two tables
Table1:
ColumnA (varchar)
Table2:
ColumnB (varchar)
I need to get all rows from T2 where ColumnB is "like" any of the rows from 'ColumnA%'. For example, rows in T1 might be:
...
1
vote
3answers
219 views
Why does LIKE not return rows for variables with '%' at end?
I find this quite odd on Microsoft SQL Server:
SELECT * FROM deliveries WHERE code LIKE '01999195000%'
-- 9 rows returned. Works.
DECLARE @a VARCHAR(10)
SET @a='01999195000%'
SELECT * FROM ...
0
votes
2answers
287 views
Searching for newlines in a Oracle DB using SQL 'like' clause
I'm trying to see if a particular column in a table in my Oracle database has any strings which contain a newline character, so a wildcard, a newline, and another wildcard.
I've tried the like ...