如何到达下一行(SQL)

时间:2015-10-26 18:20:53

标签: sql mysqli

如何使用SQL查询到达第三行? " QID"是这里的主要关键。我不想通过计算qid到达第三排!任何通用方法??

enter image description here

if (source == see_a_question_card__next_btn){
            ResultSet next = null;
            try {
                next = database_connection.statement.executeQuery(
                        "SELECT * FROM questions");

                next.next();
                question= Integer.parseInt(next.getString(1));
            } catch (SQLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

我想要"问题"变量与下一行编号的形式为" qid"。

1 个答案:

答案 0 :(得分:1)

使用limit <offset>, <number of records to fetch>

要获得 第3条记录

select * from your_table
order by qid
limit 2, 1

从第3个记录中获取所有记录开始

select * from your_table
order by qid
limit 2, 999999999