Subject | Re: [firebird-support] Doubt Regarding Sum() Function |
---|---|
Author | Aurimas Černius |
Post date | 2010-09-14T11:26:55Z |
Hi,
My mistake in previous e-mail, sorry...
you missed that.
in the other one.
group by not always does the job.
--
Aurimas
My mistake in previous e-mail, sorry...
> I have a table as follows:You need to group by ALL columns you want to display "as is", in case
>
> Table Name : Book_Master
>
> Book_Name Book_Price
> ABC 1250.00
> LMN 5698.00
> PQR 1524.00
>
>
> Table Name : Book_Details
>
> YearMonth Sold_On_Date Book_Name Copy_Sold
> 200904 01/04/2009 ABC 565
> 200904 05/04/2009 PQR 986
> 200904 05/04/2009 LMN 120
> 200904 11/04/2009 ABC 565
> 200904 25/04/2009 PQR 986
> 200904 15/04/2009 LMN 120
>
> SQL:
> Select BM.Book_Name, Sum(Book_Price) As Book_Price, Sum(COPY_SOLD) As COPY_SOLD
> from Book_Master BM Join Book_Details BD On BM.Book_Name = BD.Book_Name
> Where BD.YearMonth = '200904' Group By BM.Book_Name
you missed that.
> I get the out put as:Use LEFT JOIN, if you want all rows from first table, no matter what is
>
>
> Book_Name Book_Price Copy_Sold
> ABC 2500.00 1130
> LMN 11396.00 240
> PQR 3048.00 1972
>
> I thought that "Book_Price" column value will be displayed as it is available in the "Book_Master" table and the records will be displayed only for those books which are having entries in "Book_Details" too.
in the other one.
> But it is comming as Book_Price * No. of records exist in Book_Detauils table.Sometimes you need to do select * from (select_statement_here). Ordinary
>
> If I would like to use the Sum() function for Book_Price too then how should I use, one way is Sum(Distinct(EM.Book_Price)) but in future in some cases where I need to have multiple records in two different table I may wish to get sum of perticular column from one table and some of perticular column from other table using join, then that time I would get wrong result.
>
> Here I would like to ask one question is there other way to achieve this or I have missed out something in above sql.
group by not always does the job.
--
Aurimas