<?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: Qlikview column ambiguously defined in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065897#M87429</link>
    <description>&lt;P&gt;here is the code. couldn't get it right&amp;nbsp; got the error sql command not properly ended. If i add the bracket as shown above, it will say missing right parenthesis.&lt;/P&gt;
&lt;P&gt;FROM &lt;BR /&gt;"test1" WHRE To_Char(T1.bb, 'yyyymm') = $(vCurrentYearMonth) T1&lt;BR /&gt;LEFT JOIN SELECT "vsl" FROM "test" T2 on T1.vsl= T2.vsl;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Apr 2023 16:07:51 GMT</pubDate>
    <dc:creator>DestinedTale</dc:creator>
    <dc:date>2023-04-28T16:07:51Z</dc:date>
    <item>
      <title>Qlikview column ambiguously defined</title>
      <link>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065881#M87425</link>
      <description>&lt;P&gt;Hi, i'm encountering below error when trying to left join same table with same column name at Qlikview load script for oracle sql. How can this be done? I have put T1 and T2 to identify the columns.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TEST:&lt;BR /&gt;LOAD &lt;BR /&gt;A AS A;&lt;BR /&gt;SQL SELECT &lt;BR /&gt;T1."A"&lt;BR /&gt;FROM "TEST1" T1 left join "TEST1" T2 on T1."A" = T2."A"&lt;BR /&gt;where A ="test";&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:51:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065881#M87425</guid>
      <dc:creator>DestinedTale</dc:creator>
      <dc:date>2024-11-15T21:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview column ambiguously defined</title>
      <link>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065882#M87426</link>
      <description>&lt;P&gt;Try something like below&lt;/P&gt;
&lt;P&gt;TEST:&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;T1.A AS A1,&lt;/P&gt;
&lt;P&gt;T2.A AS A2&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;(SELECT "A" FROM "TEST1" WHERE "A" = 'test') T1&lt;/P&gt;
&lt;P&gt;LEFT JOIN&lt;/P&gt;
&lt;P&gt;(SELECT "A" FROM "TEST1") T2&lt;/P&gt;
&lt;P&gt;ON T1.A = T2.A;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 15:47:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065882#M87426</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2023-04-28T15:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview column ambiguously defined</title>
      <link>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065887#M87428</link>
      <description>&lt;P&gt;I think you may need to add T1. in the where clause:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;where T1.A ="test";&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 15:54:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065887#M87428</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2023-04-28T15:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview column ambiguously defined</title>
      <link>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065897#M87429</link>
      <description>&lt;P&gt;here is the code. couldn't get it right&amp;nbsp; got the error sql command not properly ended. If i add the bracket as shown above, it will say missing right parenthesis.&lt;/P&gt;
&lt;P&gt;FROM &lt;BR /&gt;"test1" WHRE To_Char(T1.bb, 'yyyymm') = $(vCurrentYearMonth) T1&lt;BR /&gt;LEFT JOIN SELECT "vsl" FROM "test" T2 on T1.vsl= T2.vsl;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 16:07:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065897#M87429</guid>
      <dc:creator>DestinedTale</dc:creator>
      <dc:date>2023-04-28T16:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview column ambiguously defined</title>
      <link>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065898#M87430</link>
      <description>&lt;P&gt;here is the code. couldn't get it right&amp;nbsp; got the error sql command not properly ended. If i add the bracket as shown above, it will say missing right parenthesis.&lt;/P&gt;
&lt;P&gt;FROM &lt;BR /&gt;"test1" WHRE To_Char(T1.bb, 'yyyymm') = $(vCurrentYearMonth) T1&lt;BR /&gt;LEFT JOIN SELECT "vsl" FROM "test" T2 on T1.vsl= T2.vsl;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 16:07:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065898#M87430</guid>
      <dc:creator>DestinedTale</dc:creator>
      <dc:date>2023-04-28T16:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview column ambiguously defined</title>
      <link>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065900#M87432</link>
      <description>&lt;P&gt;sorry, ive updated to include full syntax. i have the sql syntax&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LOAD &lt;BR /&gt;A as A, &lt;BR /&gt;SQL (SELECT "A" FROM "vsl"&lt;/P&gt;
&lt;P&gt;WHRE To_Char(T1.B, 'yyyymm') = $(vCurrentYearMonth) T1&lt;/P&gt;
&lt;P&gt;LEFT JOIN SELECT "vsl" FROM "vsl" T2 on T1.A = T2.A;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 16:13:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065900#M87432</guid>
      <dc:creator>DestinedTale</dc:creator>
      <dc:date>2023-04-28T16:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview column ambiguously defined</title>
      <link>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065911#M87434</link>
      <description>&lt;P&gt;Try this&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LOAD A as A&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;SQL (&lt;/P&gt;
&lt;P&gt;SELECT "A" FROM "vsl"&lt;/P&gt;
&lt;P&gt;WHERE To_Char(T1.B, 'yyyymm') = $(vCurrentYearMonth)&lt;/P&gt;
&lt;P&gt;LEFT JOIN&lt;/P&gt;
&lt;P&gt;SELECT "vsl" FROM "vsl" T2 on T1.A = T2.A&lt;/P&gt;
&lt;P&gt;);&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 16:35:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlikview-column-ambiguously-defined/m-p/2065911#M87434</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2023-04-28T16:35:13Z</dc:date>
    </item>
  </channel>
</rss>

