Search notes:

SQLite function: random

random() returns a pseudo-random number in the range between -9223372036854775808 and +9223372036854775807.
select random();
-- -1540910486154829207

select random();
-- -4574695201048937104

select random();
-- 8141489947927781092

select random();
-- 4084797152248428516
Github repository about-sqlite, path: /functions/random.sql

See also

randomblob()
functions

Index