<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Difference Between 'LIKE', 'MATCH','MIXMATCH','WILDMATCH'??? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Difference-Between-LIKE-MATCH-MIXMATCH-WILDMATCH/m-p/376186#M1167403</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to understand the following functions&lt;/P&gt;&lt;P&gt;1. Like&lt;/P&gt;&lt;P&gt;2. match&lt;/P&gt;&lt;P&gt;3. Mixmatch&lt;/P&gt;&lt;P&gt;4.Wildmatch&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit Script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Table1]:&lt;/P&gt;&lt;P&gt;Load *&amp;nbsp; INLINE [&lt;/P&gt;&lt;P&gt;ID, Name, Dept&lt;/P&gt;&lt;P&gt;1,AAA,D1&lt;/P&gt;&lt;P&gt;2,BBB,D2&lt;/P&gt;&lt;P&gt;3,CCC,D3&lt;/P&gt;&lt;P&gt;4,BBB,D4&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assume now i have loaded this table "Table1"&lt;/P&gt;&lt;P&gt;I would require to create another table from 'table1' where the field "name"&amp;nbsp; has the letter 'b' or letter 'c' &lt;/P&gt;&lt;P&gt;## This works##&lt;/P&gt;&lt;P&gt;[Like_Example]:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;ID as newID,&lt;/P&gt;&lt;P&gt;Name as newname,&lt;/P&gt;&lt;P&gt;Dept as newdept&lt;/P&gt;&lt;P&gt;Resident [Table1]&lt;/P&gt;&lt;P&gt;where&lt;/P&gt;&lt;P&gt;Name like ('*a*')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;## THIS DOESNT WORKS##&lt;/P&gt;&lt;P&gt;[Like_Example]:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;ID as newID,&lt;/P&gt;&lt;P&gt;Name as newname,&lt;/P&gt;&lt;P&gt;Dept as newdept&lt;/P&gt;&lt;P&gt;Resident [Table1]&lt;/P&gt;&lt;P&gt;where&lt;/P&gt;&lt;P&gt;Name like ('*a*', '*c*')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i need to search for both 'a' and 'c', then what is that i should be using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to use Match, Mixmatch and Wildmatch with the following example instead of like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone please help me in understanding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sarathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Aug 2012 12:50:57 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-08-08T12:50:57Z</dc:date>
    <item>
      <title>Difference Between 'LIKE', 'MATCH','MIXMATCH','WILDMATCH'???</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-Between-LIKE-MATCH-MIXMATCH-WILDMATCH/m-p/376186#M1167403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to understand the following functions&lt;/P&gt;&lt;P&gt;1. Like&lt;/P&gt;&lt;P&gt;2. match&lt;/P&gt;&lt;P&gt;3. Mixmatch&lt;/P&gt;&lt;P&gt;4.Wildmatch&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit Script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Table1]:&lt;/P&gt;&lt;P&gt;Load *&amp;nbsp; INLINE [&lt;/P&gt;&lt;P&gt;ID, Name, Dept&lt;/P&gt;&lt;P&gt;1,AAA,D1&lt;/P&gt;&lt;P&gt;2,BBB,D2&lt;/P&gt;&lt;P&gt;3,CCC,D3&lt;/P&gt;&lt;P&gt;4,BBB,D4&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assume now i have loaded this table "Table1"&lt;/P&gt;&lt;P&gt;I would require to create another table from 'table1' where the field "name"&amp;nbsp; has the letter 'b' or letter 'c' &lt;/P&gt;&lt;P&gt;## This works##&lt;/P&gt;&lt;P&gt;[Like_Example]:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;ID as newID,&lt;/P&gt;&lt;P&gt;Name as newname,&lt;/P&gt;&lt;P&gt;Dept as newdept&lt;/P&gt;&lt;P&gt;Resident [Table1]&lt;/P&gt;&lt;P&gt;where&lt;/P&gt;&lt;P&gt;Name like ('*a*')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;## THIS DOESNT WORKS##&lt;/P&gt;&lt;P&gt;[Like_Example]:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;ID as newID,&lt;/P&gt;&lt;P&gt;Name as newname,&lt;/P&gt;&lt;P&gt;Dept as newdept&lt;/P&gt;&lt;P&gt;Resident [Table1]&lt;/P&gt;&lt;P&gt;where&lt;/P&gt;&lt;P&gt;Name like ('*a*', '*c*')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i need to search for both 'a' and 'c', then what is that i should be using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to use Match, Mixmatch and Wildmatch with the following example instead of like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone please help me in understanding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sarathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 12:50:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-Between-LIKE-MATCH-MIXMATCH-WILDMATCH/m-p/376186#M1167403</guid>
      <dc:creator />
      <dc:date>2012-08-08T12:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: Difference Between 'LIKE', 'MATCH','MIXMATCH','WILDMATCH'???</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-Between-LIKE-MATCH-MIXMATCH-WILDMATCH/m-p/376187#M1167404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;follow &lt;A class="loading" href="http://qlikshare.com/"&gt;http://qlikshare.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all the function were demostrated with small examples&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 13:04:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-Between-LIKE-MATCH-MIXMATCH-WILDMATCH/m-p/376187#M1167404</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-08-08T13:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: Difference Between 'LIKE', 'MATCH','MIXMATCH','WILDMATCH'???</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-Between-LIKE-MATCH-MIXMATCH-WILDMATCH/m-p/376188#M1167405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Thanks Raj.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;DV&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;A href="http://www.QlikShare.com"&gt;www.QlikShare.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 12:26:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-Between-LIKE-MATCH-MIXMATCH-WILDMATCH/m-p/376188#M1167405</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2012-08-09T12:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Difference Between 'LIKE', 'MATCH','MIXMATCH','WILDMATCH'???</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-Between-LIKE-MATCH-MIXMATCH-WILDMATCH/m-p/376189#M1167406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear sarathi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in simple terms:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Match is use insted of writing multiple where conditions or if conditions &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where product='a' and product ='b' and product='c&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;by using match we can write like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;match(product,a,b,c)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the same way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wild match is to use match with wild characters %&lt;/P&gt;&lt;P&gt;and mix match is case insensitive&lt;/P&gt;&lt;P&gt;and like is instead of multiple where its same as match. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Dec 2015 09:57:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-Between-LIKE-MATCH-MIXMATCH-WILDMATCH/m-p/376189#M1167406</guid>
      <dc:creator />
      <dc:date>2015-12-17T09:57:10Z</dc:date>
    </item>
  </channel>
</rss>

