<?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: SELECT query in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122571#M741556</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;if you use for all entries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;means you have an internal table with some records&lt;/P&gt;&lt;P&gt;and you will hit another table and you fetch the records for those records in first internal table...&lt;/P&gt;&lt;P&gt;if we have 10 in the first table and for these 10 records there may n number of records in the 2nd table and you will get these&lt;/P&gt;&lt;P&gt;here you need two internal tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if you use joins&lt;/P&gt;&lt;P&gt;then it will give some records ( here if we have 10 records in first table and 20 in 2nd table  then we will get 20 in our target table....)&lt;/P&gt;&lt;P&gt;here you need only one internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope you understood... with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Nov 2007 11:51:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-20T11:51:26Z</dc:date>
    <item>
      <title>SELECT query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122568#M741553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello..&lt;/P&gt;&lt;P&gt; please tell me when shud i use FOR ALL ENTRIES n when shud i use INNER JOINS in select query.. whats the difference betwn them..&lt;/P&gt;&lt;P&gt;                               Thank u..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2007 11:45:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122568#M741553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-20T11:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122569#M741554</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;Inner Join: When multiple SAP tables are logically joined, it is always advisable to use inner join to read the data from them. This certainly reduces the load on the network. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us take an example of 2 tables, zairln and zflight. The table zairln has the field airln, which is the airline code and the field lnnam, which is the name of the airline. The table zflight has the field airln, the airline code and other fields which hold the details of the flights that an airline operates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since these 2 tables a re logically joined by the airln field, it is advisable to use the inner join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select a&lt;SUB&gt;airln a&lt;/SUB&gt;lnnam b&lt;SUB&gt;fligh b&lt;/SUB&gt;cntry into table int_airdet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From zairln as a inner join zflight as b on a&lt;SUB&gt;airln = b&lt;/SUB&gt;airln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to restrict the data as per the selection criteria, a where clause can be added to the above inner join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For all entries: Outer join can be created using this addition to the where clause in a select statement. It speeds up the performance tremendously, but the cons of using this variation are listed below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Duplicates are automatically removed from the resulting data set. Hence care should be taken that the unique key of the detail line items should be given in the select statement. &lt;/P&gt;&lt;P&gt;If the table on which the For All Entries IN clause is based is empty, all rows are selected into the destination table. Hence it is advisable to check before-hand that the first table is not empty. &lt;/P&gt;&lt;P&gt;If the table on which the For All Entries IN clause is based is very large, the performance will go down instead of improving. Hence attempt should be made to keep the table size to a moderate level. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not Recommended&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at int_cntry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select single * from zfligh into int_fligh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where cntry = int_cntry-cntry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append int_fligh. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Recommended&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select * from zfligh appending table int_fligh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For all entries in int_cntry &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where cntry = int_cntry-cntry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward Points if this helps,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2007 11:48:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122569#M741554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-20T11:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122570#M741555</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;      Every time u should use for all entries, it is performance wise good dont use joins .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  SUB_READ_VBRK&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM sub_read_vbrk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT vbeln&lt;/P&gt;&lt;P&gt;         rplnr&lt;/P&gt;&lt;P&gt;         bukrs&lt;/P&gt;&lt;P&gt;         FROM vbrk&lt;/P&gt;&lt;P&gt;         INTO TABLE it_vbrk&lt;/P&gt;&lt;P&gt;         WHERE vbeln IN s_vbeln&lt;/P&gt;&lt;P&gt;         AND   rplnr NE ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;    SORT it_vbrk BY rplnr.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " SUB_READ_VBRK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  SUB_READ_FPLTC&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM sub_read_fpltc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT it_vbrk[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT fplnr&lt;/P&gt;&lt;P&gt;           fpltr&lt;/P&gt;&lt;P&gt;           ccnum&lt;/P&gt;&lt;P&gt;           FROM fpltc&lt;/P&gt;&lt;P&gt;           INTO TABLE it_fpltc&lt;/P&gt;&lt;P&gt;           FOR ALL ENTRIES IN it_vbrk&lt;/P&gt;&lt;P&gt;           WHERE fplnr EQ it_vbrk-rplnr&lt;/P&gt;&lt;P&gt;           AND   ccins EQ 'GIFC'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      SORT it_fpltc BY fplnr.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " SUB_READ_FPLTC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2007 11:48:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122570#M741555</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-11-20T11:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122571#M741556</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;if you use for all entries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;means you have an internal table with some records&lt;/P&gt;&lt;P&gt;and you will hit another table and you fetch the records for those records in first internal table...&lt;/P&gt;&lt;P&gt;if we have 10 in the first table and for these 10 records there may n number of records in the 2nd table and you will get these&lt;/P&gt;&lt;P&gt;here you need two internal tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if you use joins&lt;/P&gt;&lt;P&gt;then it will give some records ( here if we have 10 records in first table and 20 in 2nd table  then we will get 20 in our target table....)&lt;/P&gt;&lt;P&gt;here you need only one internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope you understood... with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2007 11:51:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122571#M741556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-20T11:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122572#M741557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Using FOR ALL ENTRIES in your will give better performance.&lt;/P&gt;&lt;P&gt;Dont go for JOINS with out knowing the key fields in the table.&lt;/P&gt;&lt;P&gt;If you know the correct key fields and which conditions should be used as where condition in the select query, then you can go ahead with JOIN.&lt;/P&gt;&lt;P&gt;Otherwise FOR ALL ENTRIES is the best way to use.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2007 12:54:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122572#M741557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-20T12:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122573#M741558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not agree to statement "FOR ALL ENTRIES ARE BETTER THAN JOINS",&lt;/P&gt;&lt;P&gt;if you design the join properly it will fetch data faster, &lt;/P&gt;&lt;P&gt;if u have more than 3 tables involved better go for for all entries&lt;/P&gt;&lt;P&gt;if the tables are related through key fields , join also will perform well&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2007 12:58:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122573#M741558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-20T12:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122574#M741559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I was also confused about this part. Which one is recommended and which one is not. Recently i was breaking this select statment which has implemented "INNER JOIN" and I was trying to use "FOR ALL ENTRIES" to make the code Performance intensive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select BKPF&lt;SUB&gt;BELNR BKPF&lt;/SUB&gt;BUKRS BKPF&lt;SUB&gt;CPUDT VBRK&lt;/SUB&gt;BUKRS VBRK&lt;SUB&gt;FKART VBRK&lt;/SUB&gt;KUNAG VBRK&lt;SUB&gt;VBELN VBRK&lt;/SUB&gt;VBTYP VBRK&lt;SUB&gt;WAERK VBRP&lt;/SUB&gt;ARKTX VBRP&lt;SUB&gt;FKIMG  VBRP&lt;/SUB&gt;MATNR VBRP&lt;SUB&gt;NETWR VBRP&lt;/SUB&gt;POSNR VBRP&lt;SUB&gt;PSTYV VBRP&lt;/SUB&gt;VBELN VBRP&lt;SUB&gt;VRKME VBRP&lt;/SUB&gt;WERKS MARA&lt;SUB&gt;LABOR MARA&lt;/SUB&gt;MATNR MARA&lt;SUB&gt;MTART MBEW&lt;/SUB&gt;BWKEY MBEW&lt;SUB&gt;MATNR MBEW&lt;/SUB&gt;STPRS T001K&lt;SUB&gt;BUKRS T001K&lt;/SUB&gt;BWKEY T001&lt;SUB&gt;BUKRS T001&lt;/SUB&gt;WAERS&lt;/P&gt;&lt;P&gt;into (BKPF-BELNR , BKPF-BUKRS , BKPF-CPUDT , VBRK-BUKRS , VBRK-FKART , VBRK-KUNAG , VBRK-VBELN , VBRK-VBTYP , VBRK-WAERK&lt;/P&gt;&lt;P&gt;     , VBRP-ARKTX , VBRP-FKIMG , VBRP-MATNR , VBRP-NETWR , VBRP-POSNR , VBRP-PSTYV , VBRP-VBELN , VBRP-VRKME , VBRP-WERKS&lt;/P&gt;&lt;P&gt;     , MARA-LABOR , MARA-MATNR , MARA-MTART , MBEW-BWKEY , MBEW-MATNR , MBEW-STPRS , T001K-BUKRS , T001K-BWKEY , T001-BUKRS&lt;/P&gt;&lt;P&gt;     , T001-WAERS )&lt;/P&gt;&lt;P&gt;from ( BKPF&lt;/P&gt;&lt;P&gt;       inner join VBRK&lt;/P&gt;&lt;P&gt;       on VBRK&lt;SUB&gt;BUKRS = BKPF&lt;/SUB&gt;BUKRS&lt;/P&gt;&lt;P&gt;       and VBRK&lt;SUB&gt;VBELN = BKPF&lt;/SUB&gt;BELNR&lt;/P&gt;&lt;P&gt;       inner join VBRP&lt;/P&gt;&lt;P&gt;       on VBRP&lt;SUB&gt;VBELN = VBRK&lt;/SUB&gt;VBELN&lt;/P&gt;&lt;P&gt;       inner join MARA&lt;/P&gt;&lt;P&gt;       on MARA&lt;SUB&gt;MATNR = VBRP&lt;/SUB&gt;MATNR&lt;/P&gt;&lt;P&gt;       inner join MBEW&lt;/P&gt;&lt;P&gt;       on MBEW&lt;SUB&gt;MATNR = VBRP&lt;/SUB&gt;MATNR&lt;/P&gt;&lt;P&gt;       and MBEW&lt;SUB&gt;BWKEY = VBRP&lt;/SUB&gt;WERKS&lt;/P&gt;&lt;P&gt;       inner join T001K&lt;/P&gt;&lt;P&gt;       on T001K&lt;SUB&gt;BWKEY = MBEW&lt;/SUB&gt;BWKEY&lt;/P&gt;&lt;P&gt;       inner join T001&lt;/P&gt;&lt;P&gt;       on T001&lt;SUB&gt;BUKRS = T001K&lt;/SUB&gt;BUKRS )&lt;/P&gt;&lt;P&gt;       where BKPF~BUKRS in BUKRS&lt;/P&gt;&lt;P&gt;         and BKPF~CPUDT in CPUDT&lt;/P&gt;&lt;P&gt;         and VBRK~VBTYP in VBTYP&lt;/P&gt;&lt;P&gt;         and VBRK~KUNAG in KUNAG&lt;/P&gt;&lt;P&gt;         and VBRP~WERKS in WERKS&lt;/P&gt;&lt;P&gt;         and VBRP~PSTYV in PSTYV&lt;/P&gt;&lt;P&gt;         and MARA~LABOR in LABOR&lt;/P&gt;&lt;P&gt;         and MARA~MTART in MTART.&lt;/P&gt;&lt;P&gt;Endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join is implemented on these many tables.&lt;/P&gt;&lt;P&gt;1&amp;gt; BKPF&lt;/P&gt;&lt;P&gt;2&amp;gt; VBRK&lt;/P&gt;&lt;P&gt;3&amp;gt; VBRP&lt;/P&gt;&lt;P&gt;4&amp;gt; MARA&lt;/P&gt;&lt;P&gt;5&amp;gt; MBEW&lt;/P&gt;&lt;P&gt;6&amp;gt; T001K&lt;/P&gt;&lt;P&gt;7&amp;gt; T001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i compared the execution time of both the programmes then above query was taking much much less time to display the output as compared the code i had written. &lt;/P&gt;&lt;P&gt;So I think we can say that when we are selecting Data from multiple tables then it is better to implement Joins rather than going in for "FOR ALL Entries".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to straight out this concept. &lt;/P&gt;&lt;P&gt;Inputs are welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mayank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2007 13:36:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122574#M741559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-20T13:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122575#M741560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="/people/rob.burbank/blog/2007/03/19/joins-vs-for-all-entries--which-performs-better"&amp;gt;JOINS vs. FOR ALL ENTRIES - Which Performs Better?&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2007 15:34:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3122575#M741560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-20T15:34:06Z</dc:date>
    </item>
  </channel>
</rss>

