https://github.com/phartenfeller/sqlite-mysql-benchmark
https://github.com/phartenfeller/sqlite-mysql-benchmark
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/phartenfeller/sqlite-mysql-benchmark
- Owner: phartenfeller
- License: mit
- Created: 2021-05-15T09:36:09.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-01T17:24:11.000Z (over 4 years ago)
- Last Synced: 2025-10-31T15:38:37.944Z (2 months ago)
- Language: Go
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sqlite-mysql-benchmark
## Generate Sample Data
Requires [node.js](https://nodejs.org/)
```sh
cd data-factory
npm install
node index.js
```
## Queries
All posts of a certain tag
```sql
select *
from blog_posts p
join blog_post_tags pt
on p.post_id = pt.post_id
where pt.tag_id = 30
```