Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Syed17
Contributor II
Contributor II

Convert oracle query to qliksense script where function

can anyone help me to convert this oracle ( where AAA.ATTRIBUTE5 like '75%' ) into qliksense script.

how to write this in qliksense script.

Labels (3)
2 Solutions

Accepted Solutions
vinieme12
Champion III
Champion III

* is the Qlik equivalent for % in sql

WHERE WildMatch(ATTRIBUTE5, '75*')  

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

MarcoWedel

there is also a "like" operator available:

https://help.qlik.com/en-US/sense/November2023/Subsystems/Hub/Content/Sense_Hub/Scripting/Operators/...

so just replacing the wildcard % with * in your initial where clause should work as well ...

View solution in original post

4 Replies
Chanty4u
MVP
MVP

Try this

LOAD *

FROM [YourSource]

WHERE match(ATTRIBUTE5, '75%');

vinieme12
Champion III
Champion III

* is the Qlik equivalent for % in sql

WHERE WildMatch(ATTRIBUTE5, '75*')  

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
MarcoWedel

there is also a "like" operator available:

https://help.qlik.com/en-US/sense/November2023/Subsystems/Hub/Content/Sense_Hub/Scripting/Operators/...

so just replacing the wildcard % with * in your initial where clause should work as well ...