An open API service indexing awesome lists of open source software.

https://github.com/manticoresoftware/datasets

Datasets used in tests, demos etc.
https://github.com/manticoresoftware/datasets

Last synced: 3 months ago
JSON representation

Datasets used in tests, demos etc.

Awesome Lists containing this project

README

          

# Datasets

## movies_dummy_dataset.sql.zip

Location - https://github.com/manticoresoftware/datasets/releases/download/files/movies_dummy_dataset.sql.zip

```sql
mysql> select count(*) from movies;
+----------+
| count(*) |
+----------+
| 277562 |
+----------+

mysql> select count(*) from movies_liked;
+----------+
| count(*) |
+----------+
| 8671 |
+----------+

mysql> desc movies;
+-----------+--------+----------------+
| Field | Type | Properties |
+-----------+--------+----------------+
| id | bigint | |
| title | text | indexed stored |
| actor_ids | mva | |
+-----------+--------+----------------+

mysql> desc movies_liked;
+----------+--------+------------+
| Field | Type | Properties |
+----------+--------+------------+
| id | bigint | |
| movie_id | uint | |
| user_id | uint | |
+----------+--------+------------+
```