5 lines
65 B
MySQL
5 lines
65 B
MySQL
|
|
select id, name, sprite
|
||
|
|
from pokemons
|
||
|
|
order by random()
|
||
|
|
limit 2;
|