Jump to content
  • 0

Непонятна работа LIMIT в SQL


Jey Val Star
 Share

Question

Здравствуйте.

Некорректно работает запрос с LIMIT

public function pages($categ = FALSE, $start = 1)	{        $start = $start*20-20;                if($categ)        {            $where = array('cat_id' => $categ);            $order_by = 'uy4ib_pages.id DESC';        }        else        {            $where = array();            $order_by = 'uy4ib_pages.cat_id ASC';        }                $this->db->select('uy4ib_pages.id, name, date, categories.title')        ->from('uy4ib_pages')        ->join('uy4ib_categories', 'uy4ib_categories.id = uy4ib_pages.cat_id', 'left')        ->where($where)        ->order_by($order_by)        ->limit(20, $start); // здесь непонятно                return $this->db->get();	}

По идее если страница не указана - то начинать нужно с 1 (LIMIT 1, 20)

В противном случае начинать нужно с page*20-20+1 (к примеру 3 страница 3*20-20+1 = 41)

Но не работает...

 

Если выбрать категорию в которой только одна запись - то никакого вывода нет. (ошибок тоже нет)

Но если указать с нуля (LIMIT 0, 20) то все замечательно работает...

 

Может кто объяснит?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

У вас $start = $start*20-20; при $start = 1 получается $start = 0

не знаю как работает limit в этом классе

->limit(20, $start);

но по стандартному синтаксису

limit 20 - выводит 20 первых элементов

limit 20, 10 - выводит 10 начиная с 20

Link to comment
Share on other sites

  • 0

быть может потому, что отсчет начинается с нуля?

В массиве - да, отсчет идет с нуля.

А в MySQL строки считаются с 1.

Или существуют нулевые строки?)))

Link to comment
Share on other sites

  • 0

курим маны:

[LIMIT {[offset,] row_count | row_count OFFSET offset}]

 

в случае если аргументов больше одного, то первый из них - это offset - смещение.

 

SELECT * from table
limit 0, 1

-- первая строка, с нулевым смещением

 

SELECT * from table
limit 1, 1

-- одна строка со смещением в 1, т.е. вторая.

 

SELECT * from table
limit 1, 0

-- ноль строк со смещением один

 

SELECT * from table
limit 1

-- одна строка без смещения!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy