Skip to content
Snippets Groups Projects
Commit 62c2c746 authored by Safyrus's avatar Safyrus
Browse files

modif request

parent 891a00bd
No related branches found
No related tags found
No related merge requests found
...@@ -11,3 +11,23 @@ where location_country LIKE '%Japan%'; ...@@ -11,3 +11,23 @@ where location_country LIKE '%Japan%';
SELECT name SELECT name
from platform from platform
where install_base > 10000000; where install_base > 10000000;
SELECT name
from game
order by name
limit 21173, 442;
drop procedure if exists page;
delimiter //
CREATE PROCEDURE page (IN p INT)
BEGIN
set p = (p-1)*500;
SELECT id, name
from game
order by id
limit p, 500;
END//
call page(2)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment