Click to copy

• Reviewed for ksqlDB 0.29

How to Filter Messages from Stream in ksqlDB

To filter out records in a stream, use the WHERE clause in a SELECT statement.

Here’s an example to get all the products of the furniture category :

SELECT name
FROM products
WHERE category = 'furniture'
Discover what readers are saying
topictale
Get easy to digest how-tos on ksqlDB
Sign up
Please read our Privacy Policy to understand how we protect and manage your data.
You may also like