Hi Gad,

The With clause is a Common Table Expression, which Kent does mention:

"These physical copies of the data can often be avoided by using SQL constructs to accomplish the same goal with logical data sets. Those SQL features include Views, Common Table Expressions, and Derived Tables."

--
*Peter Dow* /
Dow Software Services, Inc.
909 793-9050
petercdow@xxxxxxxxx <mailto:petercdow@xxxxxxxxx>
pdow@xxxxxxxxxxxxxx <mailto:pdow@xxxxxxxxxxxxxx>

/
On 12/12/2020 2:55 AM, Gad Miron wrote:
Just seen Kent Milligan's excellent tips regarding the use of QTEMP with SQL

https://www.mcpressonline.com/analytics-cognitive/db2/techtip-top-3-reasons-to-avoid-mixing-sql-with-qtemp

I wonder why not also use the With clause
like

with tt as (select Cust_Id, sum(Ord_Amount) as OrdAmount from cust_ord group
by Cust_Id ) select tt.Cust_Id, Custfile.CustName, tt.OrdAmount from tt
left outer join Custfile on Custfile.Cust_Id = tt.Cust_Id
What am I missing/misunderstanding ?

TIA
Gad


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.