Sqlite: how can we retrieve data randomly from SQLite Database

SQLite Query
"SELECT * FROM table_name ORDER BY RANDOM() LIMIT " + limit_count
- table_name: name of your table
- limit_count: limit
* MySQL
"SELECT * FROM table_name ORDER BY RAND() LIMIT " + limit_count