Search Results

2
votes

How do I sort a VARCHAR column in SQL server that contains numbers?

There are a few possible ways to do this. One would be SELECT ... ORDER BY CASE WHEN ISNUMERIC(value) = 1 THEN CONVERT(INT, value) ELSE 9999999 -- or something …
4
votes

Case-insensitive search using Hibernate

For the simple case you describe, look at Restrictions.ilike(), which does a case-insensitive search. Criteria crit = session.createCriteria(Person.class); crit.add(Restrictions.ili …
2
votes

Configure Hibernate to escape underscores in LIKE clause using SQL Server dialect

If you're using Criteria to create the query, you can create your own expression which subclasses org.hibernate.criterion.LikeExpression, using one of the protected constructors that takes in 'Char …
1
vote

SQL query to exclude items on the basis of one value

One thing that isn't quite 100% clear to me: do you want all fruit that hasn't been rated by user 10, or just fruit that has been rated by other people but not by user 10? e.g. should frui …
0
votes

How to get more than 1000 items in HSQLDB in CASE WHEN statement?

As Bill said, it's impossible to remove the limit given the apparent HSQL parser design. In terms of alleviating the limit (i.e. letting yourself get to 1000 switches by just pushi …
6
votes

From what do sql parameters protect you?

You need to be careful with your definitions. 'Parameters' can mean a number of things; parameters to a stored procedure, for example, don't protect you at all in and of themselves. To use Java as …
0
votes

Improving scalability of the modified preorder tree traversal algorithm

I have heard of people doing this before, for the same reasons, yes. Note that you do lose at a couple of small advantages of the algorithm by doing this normally, you can tel …
0
votes

Is a JOIN faster than a WHERE ?

If you're talking specifically about SQL Server, then you should definitely be using the INNER JOIN syntax. Apart from being (personal opinion alert!) easier to read and more clear in intent, there …
2
votes

Sqlite : Sql to finding the most complete prefix

A neat trick here is to reverse a LIKE clause -- rather than saying WHERE prefix LIKE '...something...' as you would often do, turn the prefix into the p …
3
votes

SQL: finding longest date gap

Database-agnostic, something of a variant of richardtallent's, but without the restrictions. Starting with this setup: create table test(id int, userid int, time datetime) i …
0
votes

SQL LEFT outer join with only some rows from the right?

Just to clarify -- all records from TABLE_A should appear, unless there are rows in table B with statues other than 'D'? You'll need at least one non-null column on B (I'll use 'B. …
1
vote

How can I insert random values into a SQL Server table?

I've had a play with this, and found a rather hacky way to do it with the use of an intermediate table variable. Once @randomStuff is set up, we do this (note in my case, @MyTable is a tabl …