Click here to Skip to main content
15,891,204 members
Home / Discussions / Database
   

Database

 
GeneralRe: sql server Pin
PIEBALDconsult18-Jan-13 14:36
mvePIEBALDconsult18-Jan-13 14:36 
AnswerRe: sql server Pin
PIEBALDconsult18-Jan-13 4:04
mvePIEBALDconsult18-Jan-13 4:04 
GeneralRe: sql server Pin
Shameel22-Jan-13 4:31
professionalShameel22-Jan-13 4:31 
QuestionDo I need a pivot Query? Pin
GREG_DORIANcod16-Jan-13 10:09
professionalGREG_DORIANcod16-Jan-13 10:09 
AnswerRe: Do I need a pivot Query? Pin
Mycroft Holmes16-Jan-13 19:36
professionalMycroft Holmes16-Jan-13 19:36 
GeneralRe: Do I need a pivot Query? Pin
GREG_DORIANcod17-Jan-13 1:59
professionalGREG_DORIANcod17-Jan-13 1:59 
AnswerRe: Do I need a pivot Query? Pin
Jörgen Andersson21-Jan-13 8:58
professionalJörgen Andersson21-Jan-13 8:58 
QuestionTotals of each transaction type Pin
Richard.Berry10015-Jan-13 21:38
Richard.Berry10015-Jan-13 21:38 
Hi
How can I get the total number of two types of transaction between two dates per user

Example data:

User TransactionType MovementDate
Avril RECP 2012/01/04
Pat RECP 2012/01/09
Pat SRET 2012/01/09

What I would like is the following:

User Recipts Returns
Avril 1 0
Pat 1 1


This is where I was heading, but as soon as I put in a where clause to limit the date range I get an Error " Incorrect column expression: 'SUM(CASE WHEN stkhistm.transaction_type = 'RECP Then 1 else 0 end)'
SELECT SUM(CASE WHEN stkhstm.transaction_type = 'RECP' then 1 else 0 end) , SUM(CASE WHEN stkhstm.transaction_type = 'SRET' then 1 else 0 end)  
FROM vektron.scheme.stkhstm stkhstm
WHERE stkhstm.movement_date>=[?] 

AnswerRe: Totals of each transaction type Pin
Mycroft Holmes15-Jan-13 22:57
professionalMycroft Holmes15-Jan-13 22:57 
GeneralRe: Totals of each transaction type Pin
Richard.Berry10016-Jan-13 0:36
Richard.Berry10016-Jan-13 0:36 
GeneralRe: Totals of each transaction type Pin
PIEBALDconsult16-Jan-13 3:42
mvePIEBALDconsult16-Jan-13 3:42 
GeneralRe: Totals of each transaction type Pin
Richard.Berry10016-Jan-13 5:36
Richard.Berry10016-Jan-13 5:36 
QuestionCustomize color coding in SQL editor window Pin
biop.codeproject15-Jan-13 20:04
biop.codeproject15-Jan-13 20:04 
AnswerRe: Customize color coding in SQL editor window Pin
Mycroft Holmes15-Jan-13 22:51
professionalMycroft Holmes15-Jan-13 22:51 
GeneralMessage Closed Pin
16-Jan-13 19:26
biop.codeproject16-Jan-13 19:26 
GeneralRe: Customize color coding in SQL editor window Pin
Mycroft Holmes16-Jan-13 19:34
professionalMycroft Holmes16-Jan-13 19:34 
GeneralRe: Customize color coding in SQL editor window Pin
Shameel22-Jan-13 4:41
professionalShameel22-Jan-13 4:41 
Questionquery.. Pin
vishal.v.patil14-Jan-13 17:49
vishal.v.patil14-Jan-13 17:49 
AnswerRe: query.. Pin
Mycroft Holmes14-Jan-13 17:54
professionalMycroft Holmes14-Jan-13 17:54 
GeneralRe: query.. Pin
vishal.v.patil14-Jan-13 18:21
vishal.v.patil14-Jan-13 18:21 
GeneralRe: query.. Pin
Blue_Boy15-Jan-13 3:11
Blue_Boy15-Jan-13 3:11 
QuestionBuilding dictionary translation Pin
Y@ssco14-Jan-13 16:19
Y@ssco14-Jan-13 16:19 
AnswerRe: Building dictionary translation Pin
Mycroft Holmes14-Jan-13 17:52
professionalMycroft Holmes14-Jan-13 17:52 
GeneralRe: Building dictionary translation Pin
Y@ssco14-Jan-13 18:41
Y@ssco14-Jan-13 18:41 
GeneralRe: Building dictionary translation Pin
Mycroft Holmes14-Jan-13 18:52
professionalMycroft Holmes14-Jan-13 18:52 

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.