Click to copy

• Reviewed for ksqlDB 0.29

How to Compare Two Strings Case Insensitive in ksqlDB

To compare two strings ignoring the differences in lowercase and uppercase, use the LCASE() on both strings:

SELECT name
FROM products
WHERE LCASE(category) = LCASE('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