Click here to Skip to main content
15,915,799 members
Home / Discussions / Database
   

Database

 
QuestionMS SQL: how to reorganize identity column values? Pin
michal.kreslik6-Mar-10 11:52
michal.kreslik6-Mar-10 11:52 
AnswerRe: MS SQL: how to reorganize identity column values? Pin
i.j.russell6-Mar-10 12:47
i.j.russell6-Mar-10 12:47 
AnswerRe: MS SQL: how to reorganize identity column values? Pin
Gerald Schwab6-Mar-10 16:30
Gerald Schwab6-Mar-10 16:30 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
Mycroft Holmes6-Mar-10 16:45
professionalMycroft Holmes6-Mar-10 16:45 
AnswerRe: MS SQL: how to reorganize identity column values? Pin
PIEBALDconsult7-Mar-10 17:13
mvePIEBALDconsult7-Mar-10 17:13 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
Mycroft Holmes7-Mar-10 18:34
professionalMycroft Holmes7-Mar-10 18:34 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
PIEBALDconsult8-Mar-10 12:01
mvePIEBALDconsult8-Mar-10 12:01 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
Mycroft Holmes8-Mar-10 13:25
professionalMycroft Holmes8-Mar-10 13:25 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
PIEBALDconsult8-Mar-10 17:34
mvePIEBALDconsult8-Mar-10 17:34 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
Mycroft Holmes8-Mar-10 18:32
professionalMycroft Holmes8-Mar-10 18:32 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
michal.kreslik8-Mar-10 22:49
michal.kreslik8-Mar-10 22:49 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
Mycroft Holmes8-Mar-10 23:41
professionalMycroft Holmes8-Mar-10 23:41 
AnswerRe: MS SQL: how to reorganize identity column values? Pin
Mycroft Holmes7-Mar-10 18:36
professionalMycroft Holmes7-Mar-10 18:36 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
michal.kreslik8-Mar-10 1:06
michal.kreslik8-Mar-10 1:06 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
michal.kreslik8-Mar-10 21:54
michal.kreslik8-Mar-10 21:54 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
Mycroft Holmes8-Mar-10 22:27
professionalMycroft Holmes8-Mar-10 22:27 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
michal.kreslik8-Mar-10 22:30
michal.kreslik8-Mar-10 22:30 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
michal.kreslik8-Mar-10 23:57
michal.kreslik8-Mar-10 23:57 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
michal.kreslik9-Mar-10 23:19
michal.kreslik9-Mar-10 23:19 
GeneralRe: MS SQL: how to reorganize identity column values? Pin
michal.kreslik15-Mar-10 0:53
michal.kreslik15-Mar-10 0:53 
QuestionSQL Query Pin
Wayne Gaylard5-Mar-10 22:20
professionalWayne Gaylard5-Mar-10 22:20 
AnswerRe: SQL Query Pin
Mycroft Holmes6-Mar-10 2:42
professionalMycroft Holmes6-Mar-10 2:42 
Try this
SELECT
	SaleDate,
	SUM(Amount)
FROM SalesDetail SD
	INNER JOIN Sales S ON S.SaleID = SD.SaleID	
WHERE SaleDate BETWEEN ThisDate AND ThatDate
GROUP BY SaleDate


Tricky bits will be if you have store time component in your SaleDate, you will need to strip the time off.

You can also use the month/year component of the SaleDate instead of the between but it is messier.
Never underestimate the power of human stupidity
RAH

GeneralRe: SQL Query Pin
Wayne Gaylard6-Mar-10 6:25
professionalWayne Gaylard6-Mar-10 6:25 
GeneralRe: SQL Query Pin
Mycroft Holmes6-Mar-10 11:53
professionalMycroft Holmes6-Mar-10 11:53 
GeneralRe: SQL Query Pin
Wayne Gaylard6-Mar-10 14:30
professionalWayne Gaylard6-Mar-10 14:30 

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.