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

https://github.com/phartenfeller/sqlite-mysql-benchmark


https://github.com/phartenfeller/sqlite-mysql-benchmark

Last synced: about 2 months ago
JSON representation

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
```