Skip to content

Commit

Permalink
docs: fix munged markdown for IN ref topic (DOCS-9568) (#8010)
Browse files Browse the repository at this point in the history
  • Loading branch information
JimGalasyn committed Aug 18, 2021
1 parent e63676a commit 8ccef82
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions docs/developer-guide/ksqldb-reference/quick-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,23 @@ DROP STREAM [IF EXISTS] stream_name [DELETE TOPIC];
DROP TABLE [IF EXISTS] table_name [DELETE TOPIC];
```

## IN
Specifies multiple `OR` conditions.

```sql hl_lines="3"
SELECT select_expr [, ...]
FROM from_stream | from_table
WHERE exp IN (exp0, exp1, exp2);
```

The above is equivalent to:

```sql hl_lines="3"
SELECT select_expr [, ...]
FROM from_stream | from_table
WHERE exp = exp0 OR exp = exp1 OR exp = exp2;
```

## INNER JOIN
Select records in a stream or table that have matching values in another stream
or table. For more information, see
Expand Down Expand Up @@ -423,23 +440,6 @@ SELECT user_id
EMIT CHANGES;
```

## IN
Specifies multiple `OR` conditions.

```sql hl_lines"3"
SELECT select_expr [, ...]
FROM from_stream | from_table
WHERE exp IN (exp0, exp1, exp2);
```

The above is equivalent to:

```sql hl_lines"3"
SELECT select_expr [, ...]
FROM from_stream | from_table
WHERE exp = exp0 OR exp = exp1 OR exp = exp2;
```

## PARTITION BY
Repartition a stream. For more information, see
[Partition Data to Enable Joins](/developer-guide/joins/partition-data).
Expand Down

0 comments on commit 8ccef82

Please sign in to comment.