<?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 Re: Subquery in Qlikview? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Subquery-in-Qlikview/m-p/1812474#M66305</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/25710"&gt;@narender123&lt;/a&gt;&amp;nbsp;, did you try with EXISTS() in your Where?, is a efficient way to do what you want.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/November2020/Subsystems/Hub/Content/Sense_Hub/Scripting/InterRecordFunctions/Exists.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/November2020/Subsystems/Hub/Content/Sense_Hub/Scripting/InterRecordFunctions/Exists.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Jun 2021 14:22:21 GMT</pubDate>
    <dc:creator>QFabian</dc:creator>
    <dc:date>2021-06-02T14:22:21Z</dc:date>
    <item>
      <title>Subquery in Qlikview?</title>
      <link>https://community.qlik.com/t5/App-Development/Subquery-in-Qlikview/m-p/1812348#M66294</link>
      <description>&lt;P&gt;Hello Team,&lt;BR /&gt;Please tell me, How to handle this subquery in Qlikview?&lt;/P&gt;&lt;P&gt;select * from track t&lt;BR /&gt;where t.doc_ver =&lt;BR /&gt;(SELECT MAX (doc_ver)&lt;BR /&gt;FROM un_asybrk_track tr,ied i&lt;BR /&gt;WHERE tr.ied_id = i.ied_id )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Narender&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 09:55:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Subquery-in-Qlikview/m-p/1812348#M66294</guid>
      <dc:creator>narender123</dc:creator>
      <dc:date>2021-06-02T09:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Subquery in Qlikview?</title>
      <link>https://community.qlik.com/t5/App-Development/Subquery-in-Qlikview/m-p/1812363#M66296</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use same query in Qlik itself.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or&amp;nbsp;&lt;/P&gt;&lt;P&gt;Load * from track.qvd(qvd);&lt;/P&gt;&lt;P&gt;Inner join&lt;/P&gt;&lt;P&gt;Load Id, Max(&lt;SPAN&gt;doc_ver&lt;/SPAN&gt;) as&amp;nbsp;&lt;SPAN&gt;doc_ver&amp;nbsp;&lt;/SPAN&gt;from&amp;nbsp;&lt;SPAN&gt;un_asybrk_track.qvd(Qvd) group by Id;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 10:38:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Subquery-in-Qlikview/m-p/1812363#M66296</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2021-06-02T10:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Subquery in Qlikview?</title>
      <link>https://community.qlik.com/t5/App-Development/Subquery-in-Qlikview/m-p/1812465#M66304</link>
      <description>&lt;P&gt;Hi Mayil,&lt;BR /&gt;Thanks for your suggestion.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I did this at the script level.&lt;BR /&gt;&lt;BR /&gt;mix:&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;MAX (doc_ver),ied&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FROM un_asybrk_track tr group by ied;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;inner join&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ied&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FROM ied ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;no concatenate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;newmix:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Load * resident mix;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;drop mix;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;use this new mix table for join&amp;nbsp;&lt;SPAN&gt;track table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Narender&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 14:05:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Subquery-in-Qlikview/m-p/1812465#M66304</guid>
      <dc:creator>narender123</dc:creator>
      <dc:date>2021-06-02T14:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: Subquery in Qlikview?</title>
      <link>https://community.qlik.com/t5/App-Development/Subquery-in-Qlikview/m-p/1812474#M66305</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/25710"&gt;@narender123&lt;/a&gt;&amp;nbsp;, did you try with EXISTS() in your Where?, is a efficient way to do what you want.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/November2020/Subsystems/Hub/Content/Sense_Hub/Scripting/InterRecordFunctions/Exists.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/November2020/Subsystems/Hub/Content/Sense_Hub/Scripting/InterRecordFunctions/Exists.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 14:22:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Subquery-in-Qlikview/m-p/1812474#M66305</guid>
      <dc:creator>QFabian</dc:creator>
      <dc:date>2021-06-02T14:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Subquery in Qlikview?</title>
      <link>https://community.qlik.com/t5/App-Development/Subquery-in-Qlikview/m-p/1817277#M66925</link>
      <description>&lt;P&gt;Hi QFabian,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I used direct query in QlikView during qvd conversion because inner join option is showing wrong data.&lt;BR /&gt;&lt;BR /&gt;After my report, I will try with Exit() and let you know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Narender&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 10:59:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Subquery-in-Qlikview/m-p/1817277#M66925</guid>
      <dc:creator>narender123</dc:creator>
      <dc:date>2021-06-23T10:59:41Z</dc:date>
    </item>
  </channel>
</rss>

