<?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: SQL Conversion into Qlikview script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873716#M1004268</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear&lt;STRONG style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; &lt;/STRONG&gt;&lt;STRONG style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/anbu1984"&gt;anbu1984&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Actually the data is coming from flat files or QVDs.&lt;/P&gt;&lt;P&gt;Can I use as it is? Please advise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 16 May 2015 15:32:51 GMT</pubDate>
    <dc:creator>qlikviewwizard</dc:creator>
    <dc:date>2015-05-16T15:32:51Z</dc:date>
    <item>
      <title>SQL Conversion into Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873714#M1004266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help in conversion of the below SQL code into Qlikview Script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;SELECT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt; E4&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;E4&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;ENAME&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;E4&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;SAL&lt;SPAN style="color: gray;"&gt;+&lt;/SPAN&gt;&lt;SPAN style="color: fuchsia;"&gt;ISNULL&lt;/SPAN&gt;&lt;SPAN style="color: gray;"&gt;(&lt;/SPAN&gt;E5&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;SAL&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;0&lt;SPAN style="color: gray;"&gt;)+&lt;/SPAN&gt;&lt;SPAN style="color: fuchsia;"&gt;ISNULL&lt;/SPAN&gt;&lt;SPAN style="color: gray;"&gt;(&lt;/SPAN&gt;E8&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;SAL&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;0&lt;SPAN style="color: gray;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; TOTALSAL &lt;SPAN style="color: blue;"&gt;FROM&lt;/SPAN&gt; EMP E4 &lt;SPAN style="color: gray;"&gt;LEFT&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;OUTER&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;JOIN&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;SELECT&lt;/SPAN&gt; MGRNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;MGRNAME&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;SAL &lt;SPAN style="color: blue;"&gt;FROM&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: gray;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;SELECT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt; M&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; MGRNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;M&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;ENAME &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; MGRNAME&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;E&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;E&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;ENAME &lt;SPAN style="color: blue;"&gt;FROM&lt;/SPAN&gt; EMP E &lt;SPAN style="color: gray;"&gt;LEFT&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;OUTER&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;JOIN&lt;/SPAN&gt; EMP M &lt;SPAN style="color: blue;"&gt;ON&lt;/SPAN&gt; E&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;MGR&lt;SPAN style="color: gray;"&gt;=&lt;/SPAN&gt;M&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; E1 &lt;SPAN style="color: gray;"&gt;INNER&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;JOIN&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: gray;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;SELECT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt; EMPNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;SAL &lt;SPAN style="color: blue;"&gt;FROM&lt;/SPAN&gt; EMP &lt;SPAN style="color: blue;"&gt;WHERE&lt;/SPAN&gt; LAST_DATE &lt;SPAN style="color: gray;"&gt;IS&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;NOT&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;NULL&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;AND&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;START_DATE&lt;/SPAN&gt;&lt;SPAN style="color: gray;"&gt;&amp;gt;&lt;/SPAN&gt;LAST_DATE&lt;SPAN style="color: gray;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; E2 &lt;SPAN style="color: blue;"&gt;ON&lt;/SPAN&gt; E1&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;=&lt;/SPAN&gt;E2&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; E5&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;ON&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt; E4&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;=&lt;/SPAN&gt;E5&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;MGRNO&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: gray;"&gt;LEFT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt; &lt;SPAN style="color: gray;"&gt;OUTER&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;JOIN&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;(&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;SELECT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt; E6&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;MGRNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;E6&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;MGRNAME&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;SAL &lt;SPAN style="color: blue;"&gt;FROM&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: gray;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;SELECT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt; M11&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; MGRNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;M11&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;ENAME &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; MGRNAME&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;E11&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;E11&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;ENAME &lt;SPAN style="color: blue;"&gt;FROM&lt;/SPAN&gt; EMP E11 &lt;SPAN style="color: gray;"&gt;LEFT&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;OUTER&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;JOIN&lt;/SPAN&gt; EMP M11 &lt;SPAN style="color: blue;"&gt;ON&lt;/SPAN&gt; E11&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;MGR&lt;SPAN style="color: gray;"&gt;=&lt;/SPAN&gt;M11&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; E6 &lt;SPAN style="color: gray;"&gt;INNER&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;JOIN&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: gray;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;SELECT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt; MGRNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;MGRNAME&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;SAL &lt;SPAN style="color: blue;"&gt;FROM&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: gray;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;SELECT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt; M&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; MGRNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;M&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;ENAME &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; MGRNAME&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;E&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;E&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;ENAME &lt;SPAN style="color: blue;"&gt;FROM&lt;/SPAN&gt; EMP E &lt;SPAN style="color: gray;"&gt;LEFT&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;OUTER&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;JOIN&lt;/SPAN&gt; EMP M &lt;SPAN style="color: blue;"&gt;ON&lt;/SPAN&gt; E&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;MGR&lt;SPAN style="color: gray;"&gt;=&lt;/SPAN&gt;M&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; E1 &lt;SPAN style="color: gray;"&gt;INNER&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;JOIN&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: gray;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;SELECT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt; EMPNO&lt;SPAN style="color: gray;"&gt;,&lt;/SPAN&gt;SAL &lt;SPAN style="color: blue;"&gt;FROM&lt;/SPAN&gt; EMP &lt;SPAN style="color: blue;"&gt;WHERE&lt;/SPAN&gt; LAST_DATE &lt;SPAN style="color: gray;"&gt;IS&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;NOT&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;NULL&lt;/SPAN&gt; &lt;SPAN style="color: gray;"&gt;AND&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;START_DATE&lt;/SPAN&gt;&lt;SPAN style="color: gray;"&gt;&amp;gt;&lt;/SPAN&gt;LAST_DATE&lt;SPAN style="color: gray;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; E2 &lt;SPAN style="color: blue;"&gt;ON&lt;/SPAN&gt; E1&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;=&lt;/SPAN&gt;E2&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;)&lt;/SPAN&gt; E7&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;ON&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt; E6&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;=&lt;/SPAN&gt;E7&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;MGRNO&lt;SPAN style="color: gray;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;AS&lt;/SPAN&gt; E8 &lt;SPAN style="color: blue;"&gt;ON&lt;/SPAN&gt; E4&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;EMPNO&lt;SPAN style="color: gray;"&gt;=&lt;/SPAN&gt;E8&lt;SPAN style="color: gray;"&gt;.&lt;/SPAN&gt;MGRNO&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt;Source data:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="701"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="64"&gt;EMPNO&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="64"&gt;ENAME&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="64"&gt;JOB&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="64"&gt;MGR&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="84"&gt;HIREDATE&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="64"&gt;SAL&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="64"&gt;COMM&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="64"&gt;DEPTNO&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="84"&gt;START_DATE&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="85"&gt;LAST_DATE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7369&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;SMITH&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;CLERK&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7902&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;17-Dec-1980&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;800&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;20&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;15-May-2015&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;12-May-2015&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7499&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;ALLEN&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;SALESMAN&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7698&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;20-Feb-1981&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1600&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;300&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;30&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;15-May-2015&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7521&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;WARD&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;SALESMAN&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7698&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;22-Feb-1981&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1250&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;500&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;30&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;15-May-2015&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7566&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;JONES&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;MANAGER&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7839&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;2-Apr-1981&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2975&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;20&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;15-May-2015&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7654&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;MARTIN&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;SALESMAN&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7698&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;28-Sep-1981&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1250&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1400&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;30&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;14-May-2015&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;16-May-2015&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7698&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;BLAKE&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;MANAGER&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7839&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;1-May-1981&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2850&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;30&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;14-May-2015&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7782&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;CLARK&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;MANAGER&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7839&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;9-Jun-1981&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;2450&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;10&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;14-May-2015&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7788&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;SCOTT&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;ANALYST&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7566&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;9-Dec-1982&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;3000&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;20&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;14-May-2015&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7839&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;KING&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;PRESIDENT&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;17-Nov-1981&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;5000&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;10&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;14-May-2015&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7844&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;TURNER&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;SALESMAN&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7698&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;8-Sep-1981&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1500&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;0&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;30&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;14-May-2015&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7876&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;ADAMS&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;CLERK&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7788&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;12-Jan-1983&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1100&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;20&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;14-May-2015&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7900&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;JAMES&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;CLERK&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7698&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;3-Dec-1981&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;950&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;30&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;14-May-2015&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7902&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;FORD&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;ANALYST&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7566&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;3-Dec-1981&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;3000&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;20&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;14-May-2015&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20" style="border-top: none;"&gt;7934&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;MILLER&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;CLERK&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;7782&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;23-Jan-1982&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;1300&lt;/TD&gt;&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;NULL&lt;/TD&gt;&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;10&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;14-May-2015&lt;/TD&gt;&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;12-May-2015&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2015 15:17:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873714#M1004266</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-05-16T15:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Conversion into Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873715#M1004267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;You can directly run the Sql as is in Qlikview. &lt;/SPAN&gt;Why do you want convert Sql into Qlikview script? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2015 15:30:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873715#M1004267</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-05-16T15:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Conversion into Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873716#M1004268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear&lt;STRONG style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; &lt;/STRONG&gt;&lt;STRONG style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/anbu1984"&gt;anbu1984&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Actually the data is coming from flat files or QVDs.&lt;/P&gt;&lt;P&gt;Can I use as it is? Please advise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2015 15:32:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873716#M1004268</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-05-16T15:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Conversion into Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873717#M1004269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;In that case you have to write Qlikview script. Can you explain what are you trying to accomplish? Why do you have same code twice in Left outer join?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2015 15:51:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873717#M1004269</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-05-16T15:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Conversion into Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873718#M1004270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would certainly be more efficient to translate your intention into a LOAD SCRIPT. Can you describe what should happen to the source data when you load it into QlikView?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2015 16:27:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873718#M1004270</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-05-16T16:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Conversion into Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873719#M1004271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/anbu1984"&gt;anbu1984&lt;/A&gt; and &lt;STRONG style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/pcammaert"&gt;pcammaert&lt;/A&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If START_DATE&amp;gt;LAST_DATE then EMP SAL should allot to his/her MGR (Managers)&lt;/P&gt;&lt;P&gt;For example SMITH manager is FORD (7902) and his manager is JONES (7566) . So SAL should add to these two managers as &lt;SPAN style="font-size: 13.3333330154419px;"&gt;START_DATE&amp;gt;LAST_DATE for &lt;SPAN style="font-size: 13.3333330154419px;"&gt;SMITH.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Even for MILLER also need to send his SAL (1300) to his managers CLARK and his manager KING.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 May 2015 00:19:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873719#M1004271</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-05-17T00:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Conversion into Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873720#M1004272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this app&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 15:30:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873720#M1004272</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-05-18T15:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Conversion into Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873721#M1004273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Wizard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is great question, I'm also looking for answer for that kind of question means SQL Query to QlikView Script conversion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Ishfaque Ahmed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 20:23:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873721#M1004273</guid>
      <dc:creator>engishfaque</dc:creator>
      <dc:date>2015-05-18T20:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Conversion into Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873722#M1004274</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;&lt;/P&gt;&lt;P&gt;Try Self join &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/8932"&gt;Self join&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 03:46:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Conversion-into-Qlikview-script/m-p/873722#M1004274</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-05-20T03:46:40Z</dc:date>
    </item>
  </channel>
</rss>

