Plans for introducing SQL-like joins? #2858
Unanswered
dxnnymurphy
asked this question in
Q&A
Replies: 2 comments 5 replies
|
Hey Danny, I do a lot of joining too. I don't know what platform you are on but it is possible to "left join" kind of using a shared index. Here's how to do it:
This works okay so long as you are fine collapsing both tables onto the index. It gets challenging however when you want to have a "tall" table and add extra information onto that. const item_row_schema = {
itemId: "integer", // or whatever
sharedId: "integer", // or whatever
...rest
}
const joining_row_schema = {
sharedId: "integer", // or whatever
...rest
}I am not sure if this part is possible. |
1 reply
|
Hey Jordan, |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi,
I have a found a post from a few years ago where a user asked about client side sql-like joins into tables:
#1509
The post states:
Ad-hoc joins of already instantiated Tables are a a work-in-progress.Are there any updates on this?
I am looking to perform LEFT joins.
Thanks in advance!
Danny
All reactions