Last active
August 29, 2015 13:59
-
-
Save mnvx/10597586 to your computer and use it in GitHub Desktop.
Добавление записи с выбранным id в выборку на текущую страницу
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select * from ( | |
-- Основной запрос (начало) | |
select id, name from iris_account | |
where id != '0a80d5e5-97dc-c391-ed4f-2bc63c75ad38' | |
order by name desc -- сортировка таблицы для выборки данных на странице | |
-- конец | |
limit 3 | |
) t | |
union | |
-- Основной запрос (начало) | |
select id, name from iris_account | |
where id = '0a80d5e5-97dc-c391-ed4f-2bc63c75ad38' | |
order by name desc -- сортировка всего запроса для упорядоченного размещения в нем этой записи | |
-- конец |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment