Tagged Questions
The like-keyword tag has no wiki summary.
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 ...
4
votes
1answer
72 views
Linq LIKE functionality
so.. I'm using LinqToEntities, and I want to query part of a field. Normally I'd use the LIKE keyword with SQL, and then go from there..
I see that Linq does not have it.. Whats a good way to get ...
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
1answer
60 views
sql server like clause
Hey guys, I have a column in an sql server table that is nvarchar(max). I query the table with:
select * from CrossArticle_Article where Summary like '%PHILADELPHIA-BASED GUITARIST AND composer ...
0
votes
4answers
271 views
ASP.NET Dynamic Linq Search
var query = (from u in results
select u).AsQueryable();
//Build where clause
if (!string.IsNullOrEmpty(userRequest.searchData))
{
if (userRequest.searchBy == "LastName")
{
...
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 ...