6
votes
2answers
467 views
SQL LIKE with no wildcards the same as ‘=’?
I know this is a pretty basic question, and I think I know the answer...but I'd like to confirm.
Are these queries truly equivalent?
SELECT * FROM FOO WHERE BAR LIKE 'X'
SELECT …
5
votes
5answers
568 views
linq to entities generated sql
I am having some problems with linq to entities in the ado.net entity framework. Basically what I'm doing is this:
var results = (from c in companies
where c.Name.StartsWith(lett …
4
votes
11answers
261 views
SQL LIKE Performance with only the wildcard (%) as a value
I am wondering what the performance of a query would be like using the LIKE keyword and the wildcard as the value compared to having no where clause at all.
Consider a where claus …
4
votes
4answers
3k views
Escape a string in SQL Server so that it is safe to use in LIKE expression
How do I escape a string in SQL Server's stored procedure so that it is safe to use in LIKE expression.
Suppose I have an NVARCHAR variable like so:
declare @myString NVARCHAR(10 …
4
votes
3answers
710 views
What is Full Text Search vs LIKE
I just read a post mentioning "full text search" in SQL.
I was just wondering what the difference between FTS and LIKE are. I did read a couple of articles but couldn't find an …
4
votes
5answers
431 views
Access - What’s wrong with this query…
Hi to all, I'm trying to get a query working that takes the values (sometimes just the first part of a string) from a form control. The problem I have is that it only returns recor …
3
votes
3answers
90 views
Mysqli parameter binding issue
I need an extra set of eyes on this one. Any help will be greatly appreciated. This is a very simple search query, but for whatever reason I cannot find the bug. Well, I know where …
3
votes
1answer
167 views
MySQL Fulltext Searching ideographic (Asian) characters
I have a database full of Asian-character filled records (Chinese, Japanese, and Korean) alongside those with Latin-character filled records (English, Français, you name it), and I …
3
votes
5answers
400 views
SQL Server Index - Any improvement for LIKE queries?
We have a query that runs off a fairly large table that unfortunately needs to use LIKE '%ABC%' on a couple varchar fields so the user can search on partial names, etc. SQL Server …
3
votes
2answers
2k views
LINQ to SQL - select where text like string array
I have a List<string> of variable count, and I want to query (via LINQ) a table to find any items that contain any of those strings in the Text column.
Tried this (doesn't work …
3
votes
3answers
1k views
Avoiding SQL Injection in SQL query with Like Operator using parameters?
Taking over some code from my predecessor and I found a query that uses the Like operator:
SELECT * FROM suppliers
WHERE supplier_name like '%'+name+%';
Trying to avoid SQL Injec …
2
votes
2answers
38 views
SQL Server Select Where value LIKE(temporary table value)
Hi guys, bear with me, this may be a long one.
Thanks in advance for the help.
I have a function in SQL server 2008 that takes a string: 'A,B,C,D' and splits it and creates a tab …
2
votes
5answers
928 views
PHP way to execute SQL LIKE matching without a database query?
I want to match an input string to my PHP page the same way a match done by the LIKE command in SQL (MySQL) for consistency of other searches. Since (I have seen but don't compreh …
1
vote
2answers
40 views
Convenient way to use LIKE case sensivity in sqlite
As I see LIKE operator can optimize query if I switch PRAGMA case_sensitive_like=ON. I measured, it really worked, queries "LIKE someth%" becomes ten times faster on a compartively …
1
vote
2answers
107 views
dynamic linq Like
How to write a dynamic linq method for Like clause.
For.: the reference for Dynamic linq orderby is http://stackoverflow.com/questions/41244/dynamic-linq-orderby.
I am looking f …
