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.
- Host: GitHub
- URL: https://github.com/manticoresoftware/datasets
- Owner: manticoresoftware
- Created: 2024-03-13T05:00:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-13T05:07:15.000Z (about 2 years ago)
- Last Synced: 2025-07-22T15:48:55.410Z (10 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 | |
+----------+--------+------------+
```