开发者

mySQL version of 'with' clause

开发者 https://www.devze.com 2022-12-14 12:24 出处:网络
The object of my query is to search开发者_运维问答 for a long string in a database. To speed up this process, all records of the longstring table have a hash of that string on the same record. I want

The object of my query is to search开发者_运维问答 for a long string in a database. To speed up this process, all records of the longstring table have a hash of that string on the same record. I want to first find all records in the table where my search string's hash is equal to a hash on the longstring table. Then after I have that dataset, I want to compare the actual strings (since hashes aren't always unique).

Now in oracle or mssql I would do this...

with dataset as (
  select long_string
  from longstring
  where hash = 'searchhash'
) select *
from dataset
where long_string = 'searchstring'

... but mysql doesn't support 'with' clauses. So what is my best alternative in mysql?

Thanks in advance!


You can do it with a sub-select:

select *
from (
  select long_string
  from longstring
  where hash = 'searchhash'
) AS dataset
where long_string = 'searchstring'


This is the same as an AND clause.

SELECT  *
FROm longstring
WHERE hash = 'searchhash'
AND long_string = 'searchstring'
0

精彩评论

暂无评论...
验证码 换一张
取 消