Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Why tOracleRow filter the rows?

Hello,
I want to make an sql to a table in order to look up for a date if exist, and if does not exist, show a null but i dont want to filter the row if the query doesn't gives a result
My sql is
select 'YES' as RESULT from table where fieldA > '50'
Thanks
Labels (2)
3 Replies
Anonymous
Not applicable
Author

I would select the amount of datasets.
select count(1) as count_ds from table where fieldA > '50'

This query returns always as value and you can filter for 0 or greater 0.
Anonymous
Not applicable
Author

the component tOracleRow does not filter at all. I guess you are working with the component tParseRecordset? This component returns as much output rows as the result set of the query have rows.
Anonymous
Not applicable
Author

Hi,
We usually use t<DB>Input to execute a select query, you have to use a tParseRecordSet after t<DB>Row to parse the record set if you use t<DB>Row to execute a select query.
Best regards
Sabrina