× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I don't believe you need the group by at all as I don't see any aggregate
functions (SUM(), COUNT(), AVG(), ect) being used.

Group by comes into play when some of the selected columns are using
aggregate functions _AND_ some are not. Any selected column not used in an
aggregate function must appear in the group by clause.

Example:
--Total Sales
select sum(qty * price) as Total_Sales
from saleshist

--Total sales by customer
select Customer, sum(qty * price) as Total_Sales
from saleshist
group by Customer

--Total sales by customer, item
select Customer, item, sum(qty * price) as Total_Sales
from saleshist
group by Customer, item

Charles




On Tue, Dec 31, 2013 at 10:03 AM, Hoteltravelfundotcom <
hoteltravelfun@xxxxxxxxx> wrote:

Why does this group by not work, what is it I need to do?

Column NAME or expression in SELECT list not valid.
CREATE VIEW PROJ_CRWN1/DATA_WHSV2 AS SELECT CUSTOMER#, NAME, STATE,
ITEM#, PROD_LINE, INVOICE#, ORD_DATE, INV_DATE, ORD_TYPE,
CUST_TYPE, QUANTITY, EXTENDED$ FROM Proj_Crwn1.DTAWHS
GROUP BY CUSTOMERr#
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.



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.