Click here to Skip to main content
15,898,588 members
Home / Discussions / Database
   

Database

 
JokeRe: Simple Database Connectivity!!!! Pin
nelsonpaixao24-Jul-08 12:48
nelsonpaixao24-Jul-08 12:48 
GeneralRe: Simple Database Connectivity!!!! Pin
vamseeraja25-Jul-08 4:53
vamseeraja25-Jul-08 4:53 
QuestionSelect Into Statement Clarity Pin
Vimalsoft(Pty) Ltd24-Jul-08 5:31
professionalVimalsoft(Pty) Ltd24-Jul-08 5:31 
AnswerRe: Select Into Statement Clarity Pin
Tim Carmichael24-Jul-08 5:44
Tim Carmichael24-Jul-08 5:44 
GeneralRe: Select Into Statement Clarity Pin
Vimalsoft(Pty) Ltd24-Jul-08 8:06
professionalVimalsoft(Pty) Ltd24-Jul-08 8:06 
AnswerRe: Select Into Statement Clarity Pin
TheFM23424-Jul-08 8:30
TheFM23424-Jul-08 8:30 
GeneralRe: Select Into Statement Clarity Pin
Vimalsoft(Pty) Ltd24-Jul-08 8:34
professionalVimalsoft(Pty) Ltd24-Jul-08 8:34 
GeneralRe: Select Into Statement Clarity Pin
Ashfield25-Jul-08 9:24
Ashfield25-Jul-08 9:24 
QuestionMultiple databases from a master database Pin
Brendan Vogt24-Jul-08 1:18
Brendan Vogt24-Jul-08 1:18 
AnswerRe: Multiple databases from a master database Pin
TheFM23424-Jul-08 3:31
TheFM23424-Jul-08 3:31 
GeneralRe: Multiple databases from a master database Pin
Brendan Vogt24-Jul-08 5:37
Brendan Vogt24-Jul-08 5:37 
JokeRe: Multiple databases from a master database Pin
SimulationofSai24-Jul-08 12:37
SimulationofSai24-Jul-08 12:37 
Questionacess database and bind to the datagrid using c# in ado.net Pin
swapnamoturu23-Jul-08 20:50
swapnamoturu23-Jul-08 20:50 
AnswerRe: acess database and bind to the datagrid using c# in ado.net Pin
Vimalsoft(Pty) Ltd23-Jul-08 23:37
professionalVimalsoft(Pty) Ltd23-Jul-08 23:37 
Question"loop" this for me please Pin
nelsonpaixao23-Jul-08 13:40
nelsonpaixao23-Jul-08 13:40 
AnswerRe: "loop" this for me please Pin
Mycroft Holmes23-Jul-08 20:29
professionalMycroft Holmes23-Jul-08 20:29 
AnswerRe: "loop" this for me please Pin
BadhShah24-Jul-08 2:45
BadhShah24-Jul-08 2:45 
GeneralRe: "loop" this for me please Pin
nelsonpaixao24-Jul-08 12:10
nelsonpaixao24-Jul-08 12:10 
QuestionNested Aggregate Function Pin
Lash2023-Jul-08 9:56
Lash2023-Jul-08 9:56 
AnswerRe: Nested Aggregate Function Pin
TheFM23423-Jul-08 11:28
TheFM23423-Jul-08 11:28 
GeneralRe: Nested Aggregate Function Pin
Wendelius23-Jul-08 11:53
mentorWendelius23-Jul-08 11:53 
AnswerRe: Nested Aggregate Function Pin
Wendelius23-Jul-08 11:35
mentorWendelius23-Jul-08 11:35 
Hi,

If I understood you question correctly, you have several options. Few of those:

1. Create a query where you decide in which column you bring amount. Use CASE WHEN structure for decision and then use outer query to calculate sums and counts. For example
SELECT SUM(Cost), SUM(Sales), SUM(Amount)...
FROM (
   SELECT Cost = CASE WHEN n_codes > 5000 THEN Amount ELSE 0 END,
          Sales = CASE WHEN n_codes >= 4000 AND n_codes < 5000  THEN AMOUNT ELSE 0 END,
          Amount
          FROM...)

2. Use scalars for columns, for example
SELECT SUM(Amount),
       (SELECT SUM(Amount) FROM ... WHERE n_Codes > 5000 AND correlation to outer part if any),
       ...
FROM ...


Haven't tested those so there may be typos and such but they should give you the idea.

Hope this helps,

Mika
GeneralRe: Nested Aggregate Function Pin
Lash2023-Jul-08 12:23
Lash2023-Jul-08 12:23 
GeneralSQL Advice needed [modified] Pin
StevenWalsh23-Jul-08 8:22
StevenWalsh23-Jul-08 8:22 
GeneralRe: SQL Advice needed Pin
PIEBALDconsult23-Jul-08 8:51
mvePIEBALDconsult23-Jul-08 8:51 

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.