Joins¶
Keyed: As of: ej equi aj aj0 as-of ij ijf inner ajf ajf0 lj ljf left asof simple as-of pj plus wj wj1 window uj ujf union upsert , join ^ coalesce
A join combines data from two tables, or from a table and a dictionary.
Some joins are keyed, in that columns in the first argument are matched with the key columns of the second argument.
Some joins are as-of, where a time column in the first argument specifies corresponding intervals in a time column of the second argument. Such joins are not keyed.
In each case, the result has the merge of columns from both arguments. Where necessary, rows are filled with nulls or zeroes.
Keyed joins¶
^
Coalesce- The Coalesce operator merges keyed tables ignoring nulls
ej
Equi join- Similar to
ij
, where the columns to be matched are given as a parameter. ij
ijf
Inner join- Joins on the key columns of the second table. The result has one row for each row of the first table that matches the key columns of the second table.
,
Join-
The Join operator
,
joins tables and dictionaries as well as lists. For tablesx
andy
:x,y
isx upsert y
x,'y
joins records to recordsx,\:y
isx lj y
lj
ljf
Left join- Outer join on the key columns of the second table. The result has one row for each row of the first table. Null values are used where a row of the first table has no match in the second table. This is now built-in to
,\:
. (Reverse the arguments to make a right outer join.) pj
Plus join- A variation on left join. For each matching row, values from the second table are added to the first table, instead of replacing values from the first table.
uj
ujf
Union join- Uses all rows from both tables. If the second table is not keyed, the result is the catenation of the two tables. Otherwise, the result is the left join of the tables, catenated with the unmatched rows of the second table.
upsert
- Can be used to join two tables with matching columns (as well as add new records to a table). If the first table is keyed, any records that match on key are updated. The remaining records are appended.
As-of joins¶
In each case, the time column in the first argument specifies [) intervals in the second argument.
wj
,wj1
Window join- The most general forms of as-of join. Function parameters aggregate values in the time intervals of the second table. In
wj
, prevailing values on entry to each interval are considered. Inwj1
, only values occurring within each interval are considered. aj
,aj0
,ajf
,ajf0
As-of join- Simpler window joins where only the last value in each interval is used. In the
aj
result, the time column is from the first table, while in theaj0
result, the time column is from the second table. asof
- A simpler
aj
where all columns (or dictionary keys) of the second argument are used in the join.
Implicit joins¶
A foreign key is made by enumerating over the column/s of a keyed table.
Where a primary key table m
has a key column k
and a table d
has a column c
and foreign key linking to k
, a left join is implicit in the query
select m.k, c from d
This generalizes to multiple foreign keys in d
.
Suppliers and parts database sp.q
q)\l sp.q
+`p`city!(`p$`p1`p2`p3`p4`p5`p6`p1`p2;`london`london`london`london`london`lon..
(`s#+(,`color)!,`s#`blue`green`red)!+(,`qty)!,900 1000 1200
+`s`p`qty!(`s$`s1`s1`s1`s2`s3`s4;`p$`p1`p4`p6`p2`p2`p4;300 200 100 400 200 300)
q)select sname:s.name, qty from sp
sname qty
---------
smith 300
smith 200
smith 400
smith 200
clark 100
smith 100
jones 300
jones 400
blake 200
clark 200
clark 300
smith 400
Implicit joins extend to the situation in which the targeted keyed table itself has a foreign key to another keyed table.
q)emaster:([eid:1001 1002 1003 1004 1005] currency:`gbp`eur`eur`gbp`eur)
q)update eid:`emaster$1001 1002 1005 1004 1003 from `s
`s
q)select s.name, qty, s.eid.currency from sp
name qty currency
------------------
smith 300 gbp
smith 200 gbp
smith 400 gbp
smith 200 gbp
clark 100 gbp
smith 100 gbp
jones 300 eur
jones 400 eur
blake 200 eur
clark 200 gbp
clark 300 gbp
smith 400 gbp
Q for Mortals §9.9.1 Implicit Joins
Q for Mortals §9.9 Joins