vote up 2 vote down star

I have a SQL that can be simplified to:

SELECT * 
  FROM table 
 WHERE LOCATE( column, :keyword ) > 0 
ORDER BY LOCATE( column, :keyword )

You can see there is a duplicate of "LOCATE( column, :keyword )". Is there a way to calculate it only once ?

flag

1  
Also, in case you didn't know, many databases let you create an index on a function or calculation. So if you find yourself doing lots of queries based on LOCATE(column,:keyword), you could create an index where that value was precomputed and stored, to increase the speed of queries. – Peter Oct 20 at 15:59
1  
Are you sure that LOCATE is being called twice? – tster Oct 20 at 16:03
tster is correct - many sql engines will optimize that. – Jeff Ober Oct 20 at 16:09
My purpose is not only to save calculation, but also makes the SQL clear. Because the example above is a simplified example, the actually SQL in my case may goes to 6 full lines long easily. – Cheng Oct 20 at 16:24

3 Answers

vote up 1 vote down check

HAVING works with aliases in MySQL:

SELECT *, LOCATE( column, :keyword ) AS somelabel 
FROM table 
HAVING somelabel > 0 
ORDER BY somelabel
link|flag
Note that HAVING calculates the entire result set and then filters it. WHERE filters row by row, saving memory. – Jeff Ober Oct 20 at 18:46
vote up 5 vote down
SELECT *, LOCATE( column, :keyword ) AS somelabel 
FROM table 
WHERE somelabel > 0 
ORDER BY somelabel
link|flag
But I got an error on MySQL #1054 - Unknown column 'c1' in 'where clause' The SQL is: SELECT *, LOCATE(name, 'a') AS c1 FROM employees WHERE c1 > 0 – Cheng Oct 20 at 16:04
This method won't work for all databases. Some will still require you to explicitly reference the function in the ordering clause. – Sonny Boy Oct 20 at 16:10
Does this even work for MySQL? dev.mysql.com/doc/refman/… "It is not allowable to refer to a column alias in a WHERE clause, because the column value might not yet be determined when the WHERE clause is executed" – CodeByMoonlight Oct 20 at 16:13
Jeff, which database support this? MySQL does not. – Cheng Oct 20 at 16:26
The AS keyword? Most should. If MySQL cannot do it, try performing the SELECT in a subquery and apply the WHERE to that. – Jeff Ober Oct 20 at 16:33
show 1 more comment
vote up 2 vote down

Jeff Ober has the right idea, but here is an alternative method:

SELECT
  t.*
 ,loc.LOCATED
FROM
  table t
  INNER JOIN
  (
  SELECT
    primary_key
   ,LOCATE(column,:keyword) AS LOCATED
  FROM
    table 
  ) loc
  ON t.primary_key = loc.primary_key
WHERE loc.LOCATED > 0
ORDER BY
  loc.LOCATED
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.