Tagged Questions

1
vote
2answers
58 views

Hibernate HQL query by using like operator

Hi, Seu the following mapping @Entity public class User { private Integer id; @Id; private Integer getId() { return this.id; } } Notice id is an Integer. Now i need this …
0
votes
1answer
36 views

Can MySQL fulltext search be adapted to search for partial words?

I implemented MySQL fulltext search and worked perfect. Now the client wants that partial matches be found by the search, for example the term 'base' should match 'database'. I know the whole idea of …
0
votes
3answers
127 views

LIKE operator for Progress DB SQL

I'm trying to do something like this in Progress SQL (THIS IS NOT POSTGRES!) SELECT CASE WHEN code LIKE '%foo%' THEN 'Y' ELSE 'N' END as foo FROM bar However Progress does not support a …
5
votes
5answers
252 views

Oracle query using ‘like’ on indexed number column, poor performance.

On Query 1 a full table scan is being performed even though the id is an indexed column. Query 2 achieves the same result but much faster. If Query 1 is run returning an indexed column then it returns …
1
vote
5answers
150 views

SQL Server datetime LIKE select ?

in MySQL select * from record where register_date like '2009-10-10%' What is the syntax in SQL Server? Thank you.
1
vote
2answers
106 views

“LIKE” does not work as expected

In Postgresql 8 why this is ok select * from prod where code like '1%' select * from prod where code like '%1' but this returns 0 rows (there are codes begining/ending with digit 1) select * from …
0
votes
3answers
80 views

How to use SQL LIKE

Hello, I am trying to filter results in an sql query using the like statement. Here are the results …
1
vote
5answers
362 views

SQL query for a carriage return in a string and ultimately removing carriage return

SQL query for a carriage return in a string and ultimately removing carriage return I have some data in a table and there are some carriage returns in places where I don't want them. I am trying to …
0
votes
4answers
655 views

C# DataView Date Range with LIKE Operator?!?

I have an XML file: <SMS> <Number>+447761692278</Number> <DateTime>2009-07-27T15:20:32</DateTime> <Message>Yes</Message> …
0
votes
3answers
100 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 …
4
votes
3answers
666 views

What is a suitable replacement for the SQL Like operator to increase performance?

I'm working on an application that runs on Windows Mobile 6 that needs to be able to retrieve all items from an item table that contain a given string (provided by the end user) within the item's …
2
votes
5answers
415 views

Sqlite + 80K rows + LIKE = keyboard lag

I've had this problem that I have been putting off solving, but now is the time. I have a basic dictionary program. It has a UISearchBar and a UITableView. It works the way that it should except when …