Click here to Skip to main content
15,887,683 members
Home / Discussions / Database
   

Database

 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
jkirkerx4-Jan-14 19:38
professionaljkirkerx4-Jan-14 19:38 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
Jörgen Andersson4-Jan-14 21:04
professionalJörgen Andersson4-Jan-14 21:04 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
jkirkerx5-Jan-14 7:57
professionaljkirkerx5-Jan-14 7:57 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
jkirkerx5-Jan-14 8:29
professionaljkirkerx5-Jan-14 8:29 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
Christian Graus5-Jan-14 16:02
protectorChristian Graus5-Jan-14 16:02 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
Jörgen Andersson5-Jan-14 22:19
professionalJörgen Andersson5-Jan-14 22:19 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
jkirkerx6-Jan-14 6:06
professionaljkirkerx6-Jan-14 6:06 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
Jörgen Andersson5-Jan-14 22:16
professionalJörgen Andersson5-Jan-14 22:16 
I believe you can remove also the last temptable:
SQL
DECLARE <a href="/Members/Year">@Year</a>AS int;
DECLARE <a href="/Members/month">@Month</a>AS int;
DECLARE <a href="/Members/Day">@Day</a>AS int;
SET <a href="/Members/Year">@Year</a>= 2013;
SET <a href="/Members/month">@Month</a>= 8;
SET <a href="/Members/Day">@Day</a>= 29;
 
DECLARE @startDate AS DATE;
DECLARE @stopDate AS DATE;
SET @startDate = DATETIMEFROMPARTS(@Year, <a href="/Members/month">@Month</a> <a href="/Members/Day">@Day</a> 0, 0, 0, 0);
SET @stopDate = DATETIMEFROMPARTS(@Year, <a href="/Members/month">@Month</a> <a href="/Members/Day">@Day</a> 23, 59, 59, 999);

SELECT PartNumber, ThumbNail, SDescription, sum(Qty) Qty, Cost, Price, SUM(Qty * Price) SubTotal From CompletedOrdersCart 
WHERE OrderDate > @startDate AND OrderDate < @stopDate
GROUP BY PartNumber, Thumbnail, SDescription, Cost, Price

And just like the thumbnail, the SDescription belongs in a different table, for the same reasons

jkirkerx wrote:
I tried between, but I would of had to deduct a day, and add a day for start and stop.

My bad,
SQL
WHERE OrderDate BETWEEN @StartDate AND @StopDate
is the same as
SQL
WHERE OrderDate >= @startDate AND OrderDate <= @stopDate

not
SQL
WHERE OrderDate > @startDate AND OrderDate < @stopDate

Wrong is evil and must be defeated.
- Jeff Ello[^]

GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
jkirkerx6-Jan-14 6:15
professionaljkirkerx6-Jan-14 6:15 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
Jörgen Andersson6-Jan-14 8:17
professionalJörgen Andersson6-Jan-14 8:17 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
jkirkerx6-Jan-14 7:01
professionaljkirkerx6-Jan-14 7:01 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
Jörgen Andersson6-Jan-14 8:36
professionalJörgen Andersson6-Jan-14 8:36 
GeneralRe: How to loop or something a temp distinct table to sum up the totals Pin
jkirkerx6-Jan-14 9:02
professionaljkirkerx6-Jan-14 9:02 
QuestionNot work correctly Pin
Member 100045982-Jan-14 23:05
Member 100045982-Jan-14 23:05 
AnswerRe: Not work correctly Pin
Shameel2-Jan-14 23:14
professionalShameel2-Jan-14 23:14 
GeneralRe: Not work correctly Pin
Member 100045983-Jan-14 0:07
Member 100045983-Jan-14 0:07 
GeneralRe: Not work correctly Pin
Shameel3-Jan-14 0:41
professionalShameel3-Jan-14 0:41 
GeneralRe: Not work correctly Pin
Richard MacCutchan3-Jan-14 1:11
mveRichard MacCutchan3-Jan-14 1:11 
GeneralRe: Not work correctly Pin
Simon_Whale3-Jan-14 1:53
Simon_Whale3-Jan-14 1:53 
GeneralRe: Not work correctly Pin
Member 100045983-Jan-14 3:57
Member 100045983-Jan-14 3:57 
SuggestionRe: Not work correctly Pin
Shameel6-Jan-14 3:40
professionalShameel6-Jan-14 3:40 
Questioninsert information of filed to another fielads Pin
f,amiri88227-Dec-13 9:11
f,amiri88227-Dec-13 9:11 
AnswerRe: insert information of filed to another fielads Pin
Andrius Leonavicius27-Dec-13 12:23
professionalAndrius Leonavicius27-Dec-13 12:23 
AnswerRe: insert information of filed to another fielads Pin
Shameel2-Jan-14 4:09
professionalShameel2-Jan-14 4:09 
QuestionMySql Connection String 'localhost' not working Pin
Dominick Marciano23-Dec-13 21:17
professionalDominick Marciano23-Dec-13 21:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.