Click here to Skip to main content
15,894,405 members
Home / Discussions / Database
   

Database

 
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 
QuestionStrength of MSAccess 2007. Pin
priyamtheone5-Mar-10 20:18
priyamtheone5-Mar-10 20:18 
AnswerRe: Strength of MSAccess 2007. Pin
Jörgen Andersson6-Mar-10 0:06
professionalJörgen Andersson6-Mar-10 0:06 
AnswerRe: Strength of MSAccess 2007. Pin
Mycroft Holmes6-Mar-10 2:37
professionalMycroft Holmes6-Mar-10 2:37 
QuestionSqlConnection - to keep around or dispose Pin
treefirmy5-Mar-10 18:49
treefirmy5-Mar-10 18:49 
AnswerRe: SqlConnection - to keep around or dispose Pin
Eddy Vluggen6-Mar-10 1:24
professionalEddy Vluggen6-Mar-10 1:24 
QuestionIs there a way to change a column property in a table without having to delete the entire table? Pin
tonyonlinux4-Mar-10 8:43
tonyonlinux4-Mar-10 8:43 
AnswerRe: Is there a way to change a column property in a table without having to delete the entire table? Pin
Luc Pattyn4-Mar-10 9:05
sitebuilderLuc Pattyn4-Mar-10 9:05 
GeneralRe: Is there a way to change a column property in a table without having to delete the entire table? Pin
tonyonlinux4-Mar-10 9:19
tonyonlinux4-Mar-10 9:19 
GeneralRe: Is there a way to change a column property in a table without having to delete the entire table? Pin
Tim Carmichael4-Mar-10 10:18
Tim Carmichael4-Mar-10 10:18 
QuestionEncrypt/Decrypt Password Field in Sybase Pin
MWRivera4-Mar-10 5:42
MWRivera4-Mar-10 5:42 
AnswerRe: Encrypt/Decrypt Password Field in Sybase Pin
David Skelly5-Mar-10 2:06
David Skelly5-Mar-10 2:06 
GeneralRe: Encrypt/Decrypt Password Field in Sybase Pin
MWRivera5-Mar-10 9:08
MWRivera5-Mar-10 9:08 
QuestionHelp on using Transaction Pin
Saiyed Alam4-Mar-10 5:00
Saiyed Alam4-Mar-10 5:00 
AnswerRe: Help on using Transaction Pin
Not Active4-Mar-10 5:45
mentorNot Active4-Mar-10 5:45 

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.