我有一个简单的MySQL表,由单词和相关的数字组成。每个单词的数字都是唯一的。我想找到索引大于给定数字的第一个单词。举个例子:
-----------------------
| WORD: | F_INDEX: |
|---------------------|
| a | 5 |
| cat | 12 |
| bat | 4002 |
-----------------------
如果给出了数字“9”,我会希望“cat”返回,因为它是第一个索引大于9的单词。
我知道我可以通过查询获得已排序行的完整列表:
SELECT * FROM table_name ORDER BY f_index;
但是,相反,想做一个执行此操作的MySQL查询。 (混淆在于我不确定如何跟踪查询中的当前行)。我知道可以循环使用这样的东西:
CREATE PROCEDURE looper(desired_index INT)
BEGIN
DECLARE current_index int DEFAULT 0
// Loop here, setting current_index to whatever the next rows index is,
// then do a comparison to check it to our desired_index, breaking out
// if it is greater.
END;
非常感谢任何帮助。
答案 0 :(得分:3)
试试这个:
SELECT t.word
, t.f_index
FROM table_name t
WHERE t.f_index > 9
ORDER
BY t.f_index
LIMIT 1
让数据库返回你需要的行要高效得多,而不是拉出一大堆行并找出你需要的行。
为了获得此查询的最佳性能,您需要索引ON table_name (f_index,word)
。
答案 1 :(得分:1)
为什么不使用MYSQL语句来检索从f_index找到的第一个项目,其中f_index大于传入的值。
例如:
select word from table_name
where f_index > desired_index
order by f_index
limit 1