mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
add a "store intersect" example to the Store() docs
This commit is contained in:
parent
a6190f5cfa
commit
16811bc04c
1 changed files with 8 additions and 0 deletions
|
|
@ -292,6 +292,14 @@ Store(Row(stargazer=1), stargazer=2)
|
|||
{"results":[true]}
|
||||
```
|
||||
|
||||
Store the results of the intersection of stargazer rows 10 and 11 into stargazer row 20.
|
||||
```request
|
||||
Store(Intersect(Row(stargazer=10), Row(stargazer=11)), stargazer=20)
|
||||
```
|
||||
```response
|
||||
{"results":[true]}
|
||||
```
|
||||
|
||||
### Read Operations
|
||||
|
||||
#### Row
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue