Plans for introducing SQL-like joins? #2858
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. |
Beta Was this translation helpful? Give feedback.
-
Hey Jordan, |
Beta Was this translation helpful? Give feedback.
-
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
Beta Was this translation helpful? Give feedback.
All reactions