@info(name = 'query2')
from CheckStockStream join StockTable
on (
str:contains(StockTable.symbol, 'test') AND
str:contains(StockTable.symbol2, 'test1')
)
select CheckStockStream.symbol as checkSymbol, StockTable.symbol as symbol,
StockTable.volume as volume
insert into OutputStream ;
The above query resolves to SQL query as,
where symbol LIKE test and symbol2 like %test1%
Affected Product Version:
siddhi store RDBMS 7.0.x
OS, DB, other environment details and versions:
H2
Description: $subject
The above query resolves to SQL query as,
Affected Product Version: siddhi store RDBMS 7.0.x
OS, DB, other environment details and versions:
H2