Skip to content

Commit

Permalink
add join specification rows
Browse files Browse the repository at this point in the history
  • Loading branch information
d33bs committed Jan 11, 2024
1 parent e852259 commit 7cb40fd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/source/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,23 @@ Data concatenation within CytoTable typically occurs using a [ParquetWriter](htt
<tr><td>1</td><td>a</td><td>0.01</td><td>2024-01-01</td></tr>
</table>

</td>
</tr>
<tr >
<td colspan="2" style="text-align:center;font-weight:bold;">
Join Specification in SQL
</td>
</tr>
<tr >
<td colspan="2">

```sql
SELECT *
FROM Table_1
LEFT JOIN Table_2 ON
Table_1.Col_A = Table_2.Col_A;
```

</td>
</tr>
</table>
Expand Down

0 comments on commit 7cb40fd

Please sign in to comment.