aboutsummaryrefslogtreecommitdiffstats
path: root/example/inspect_tagmap.md
blob: e05ff0d1a793828bfcea5e36add3f31337c619a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
To inspect the [`tagmap`][1] table using human readable values:

[1]: internal_tables.md

```
SELECT cards.name,tags.name
FROM tagmap
INNER JOIN cards
ON tagmap.card = cards.id
INNER JOIN tags
ON tagmap.tag = tags.id
```