Tagged Questions
1
vote
1answer
126 views
Full outer join on multiple fields
I have several tables of academic journal rankings, from different sources and with different citation metrics. I want to combine them in a single table, aggregating data by journal.
For example, the ...
1
vote
1answer
46 views
SQLite Person Involved in A OR B
I'll be honest this is a homework question, but I've wasted hours into it and just can't get it right. It returns either the wrong number of results or the wrong data:
I need to select every person ...
0
votes
1answer
65 views
Convert access query with right outer join to sqlite query
SELECT t13_Literature_Material_Codes.Databank, t13_Literature_Material_Codes.BASE_NUMB, t13_Literature_Material_Codes.BASE_SYMB, t13_Literature_Material_Codes.BASE_CHAR, ...
5
votes
2answers
5k views
What is the precedence of multiple JOIN statements in sqlite?
The following two queries are returning different results, to my surprise:
SELECT *
FROM foo
JOIN bar
ON bar.id=foo.bar_id
JOIN baz
ON baz.id=foo.baz_id
...
2
votes
2answers
886 views
Refactor SQL (workaround RIGHT OUTER JOIN)
Since SQLite does not support RIGHT OUTER JOINS I pose the following challenge (read: invitation to do my work for me):
Refactor this query so it no longer utilises SQLite-unsupported constructs like ...