aboutsummaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2021-07-23 23:42:30 -0400
committerGravatar - 2021-07-26 22:55:40 -0400
commitc7a64884129e47af8a29614df72cdf8472c56d7f (patch)
tree10a7adde371886cabaf77cbe46745de5d56e7e12 /example
parentadd renaming (diff)
add inspect_tagmap.md
Diffstat (limited to 'example')
-rw-r--r--example/inspect_tagmap.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/example/inspect_tagmap.md b/example/inspect_tagmap.md
new file mode 100644
index 0000000..e05ff0d
--- /dev/null
+++ b/example/inspect_tagmap.md
@@ -0,0 +1,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
+```