<?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 SQL Query with Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SQL-Query-with-Qlikview/m-p/1567332#M742438</link>
    <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;I have sql query which i have to implement in Qlikview.&lt;/P&gt;&lt;P&gt;Query&lt;/P&gt;&lt;PRE&gt;(SELECT MIN(date) &lt;BR /&gt;FROM xyz A1 &lt;BR /&gt;WHERE A1.dff=A.nid&lt;BR /&gt;P_code IN (58,656,46,49,10) ),'DD-MON-YYYY') NDate&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;How to write same SQL query in qlikview?&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 03:54:20 GMT</pubDate>
    <dc:creator>Jacob</dc:creator>
    <dc:date>2024-11-16T03:54:20Z</dc:date>
    <item>
      <title>SQL Query with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Query-with-Qlikview/m-p/1567332#M742438</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;I have sql query which i have to implement in Qlikview.&lt;/P&gt;&lt;P&gt;Query&lt;/P&gt;&lt;PRE&gt;(SELECT MIN(date) &lt;BR /&gt;FROM xyz A1 &lt;BR /&gt;WHERE A1.dff=A.nid&lt;BR /&gt;P_code IN (58,656,46,49,10) ),'DD-MON-YYYY') NDate&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;How to write same SQL query in qlikview?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:54:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Query-with-Qlikview/m-p/1567332#M742438</guid>
      <dc:creator>Jacob</dc:creator>
      <dc:date>2024-11-16T03:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Query-with-Qlikview/m-p/1567341#M742440</link>
      <description>&lt;P&gt;The reference to table A comes from elsewhere in the script from which you cut this snippet. There is no way to implement that without some idea of what A is. In general, you could use this approach&lt;/P&gt;&lt;PRE&gt;LOAD Date(NDate, 'DD-MMM-YYYY') as NDate;
SQL SELECT MIN(date) as NDate, ...&lt;/PRE&gt;&lt;P&gt;But make sure that whatever you include in the SQL statement is a valid SQL expression in your DBMS.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2019 06:37:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Query-with-Qlikview/m-p/1567341#M742440</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-04-10T06:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Query-with-Qlikview/m-p/1567350#M742441</link>
      <description>&lt;P&gt;If A is a table, then you could use&lt;/P&gt;&lt;PRE&gt;LOAD Date(NDate, 'DD-MMM-YYYY') as NDate;
SQL SELECT MIN(date) as NDate
FROM xyz A1 
	left join &amp;lt;name of table A&amp;gt; A
WHERE A1.dff=A.nid
P_code IN (58,656,46,49,10)&lt;/PRE&gt;&lt;P&gt;or&lt;/P&gt;&lt;PRE&gt;LOAD Date(NDate, 'DD-MMM-YYYY') as NDate;
SQL SELECT MIN(date) as NDate
FROM xyz A1, &amp;lt;name of table A&amp;gt; A
WHERE A1.dff=A.nid
P_code IN (58,656,46,49,10)&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Apr 2019 06:44:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Query-with-Qlikview/m-p/1567350#M742441</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-04-10T06:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Query with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Query-with-Qlikview/m-p/1567363#M742442</link>
      <description>&lt;P&gt;actually i want to implement in expression can u plz help me with that.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2019 06:58:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Query-with-Qlikview/m-p/1567363#M742442</guid>
      <dc:creator>Jacob</dc:creator>
      <dc:date>2019-04-10T06:58:28Z</dc:date>
    </item>
  </channel>
</rss>

