-->

Querying Same Lookup Table With Multiple Columns

2019-04-08 12:29发布

问题:

I'm a bit confused on this. I have a data table structured like this:

Table: Data

DataID    Val
1         Value 1
2         Value 2
3         Value 3
4         Value 4

Then I have another table structured like this:

Table: Table1

Col1    Col2
1       2
3       4
4       3
2       1

Both columns from Table1 point to the data in the data table. How can I get this data to show in a query? For example, a query to return this:

Query: Query1

Column1    Column2
Value 1    Value 2
Value 3    Value 4
Value 4    Value 3
Value 2    Value 1

I'm familiar enough with SQL to do a join with one column, but lost beyond that. Any help is appreciated. Sample sql or a link to something to read. Thanks!

PS: This is in sqlite

回答1:

You can join the same table twice:

Select
  d1.val As column1,
  d2.val As column2
From table1 t
Join data d1 On ( d1.dataId = t.col1 )
Join data d2 On ( d2.dataId = t.col2 )


标签: sql sqlite3