After some joins, I’ve managed to get a table that looks like:
src | destination
1 | 2
3 | 4
Both source and destinations are IDs and there’s another table that is
id | name
1 | hello
2 | foo
3 | bar
4 | baz
How do I get something like
src | dest
hello | foo
bar | baz
fairly quickly in sqlite?
Let’s suppose you first table is called
Mappingand you source/destination names table is calledLocales.This is what you want to do: