Here is my query.
SELECT ROW_NUMBER() OVER(ORDER BY RANDOM()) AS rowNo, id, name, address FROM Users
It works in Sqlite Db Browser. Is there any other way to put rowNo on randomize rows?
My Users table
id | integer, auto-increment
name | text
address | text