Skip to content

Commit 11ae9ad

Browse files
committed
Minor update in the basic operators list
1 parent 223d85c commit 11ae9ad

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,13 @@ Here is a summary of the content that you can expect to have learned:
3131
- Table tiers (`Lookup`, `Manual`, `Imported`, `Computed`)
3232
- Insert entries and view entries in tables
3333
- Table dependency and data integrity
34-
- Query operations
34+
- Basic operations
3535
- Restriction - `&`
3636
- Join - `*`
3737
- Projection - `.proj()`
38-
- Aggregation - `.aggr()`
39-
- Fetch operations
40-
- Retrieve everything
41-
- Retrieve primary key - `.fetch("KEY")`
42-
- Retrieve selective attributes
43-
- Delete operations
38+
- Fetch - `.fetch()`
39+
- Deletion - `.delete()`
40+
- Drop - `.drop()`
4441

4542
- DataJoint advanced topics: pipeline automation (~1 hour)
4643
- `Imported` and `Computed` tables

tutorials/01-DataJoint Basics.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1725,7 +1725,7 @@
17251725
"source": [
17261726
"We will introduce significant types of queries used in DataJoint:\n",
17271727
"* 1. Restriction (`&`) and negative restriction (`-`): filter the data with certain conditions\n",
1728-
"* 2. Joining (`*`): bring fields from different tables together\n",
1728+
"* 2. Join (`*`): bring fields from different tables together\n",
17291729
"* 3. Projection (`.proj()`): focus on a subset of attributes\n",
17301730
"* 4. Fetch (`.fetch()`): pull the data from the database\n",
17311731
"* 5. Deletion (`.delete()`): delete entries and their dependencies\n",
@@ -3438,7 +3438,7 @@
34383438
"cell_type": "markdown",
34393439
"metadata": {},
34403440
"source": [
3441-
"### 2. Joining (`*`): bring fields from different tables together"
3441+
"### 2. Join (`*`): bring fields from different tables together"
34423442
]
34433443
},
34443444
{

0 commit comments

Comments
 (0)