Click here to Skip to main content
16,004,806 members
Home / Discussions / Database
   

Database

 
GeneralRe: Create a custom search string Pin
Mark J. Miller25-Apr-08 9:06
Mark J. Miller25-Apr-08 9:06 
GeneralRe: Create a custom search string Pin
Paul McGann25-Apr-08 9:45
professionalPaul McGann25-Apr-08 9:45 
GeneralRe: Create a custom search string Pin
ChandraRam27-Apr-08 23:24
ChandraRam27-Apr-08 23:24 
Questionis it possible to replicate mysql data on mssql server [modified] Pin
Talsaniya Jayesh25-Apr-08 5:27
professionalTalsaniya Jayesh25-Apr-08 5:27 
QuestionApplication roles Pin
aecordoba25-Apr-08 4:15
aecordoba25-Apr-08 4:15 
Generaltotal Impression for same id and name Pin
r aa j24-Apr-08 23:04
r aa j24-Apr-08 23:04 
GeneralRe: total Impression for same id and name Pin
Blue_Boy25-Apr-08 0:05
Blue_Boy25-Apr-08 0:05 
GeneralRe: total Impression for same id and name Pin
andyharman25-Apr-08 0:12
professionalandyharman25-Apr-08 0:12 
Try:
select S.siteId, S.siteName, sum(D.Impression) as Impression
  from dbo.AE_Dimension as D
  inner join dbo.AE_Channel as C
    on D.channelId = C.channelId 
  inner join dbo.AE_Site as S
    on C.siteId = S.siteId
  where D.cpm = '0.5$'
  group by S.siteId, S.siteName
Note that using table-aliases (e.g. "D" instead of "dbo.AE_Dimension") makes it more readable.
GeneralRe: total Impression for same id and name Pin
Rajkamal_dfine25-Apr-08 20:52
Rajkamal_dfine25-Apr-08 20:52 
Generaldatabase problem Pin
snouto24-Apr-08 22:24
snouto24-Apr-08 22:24 
GeneralRe: database problem Pin
Ashfield24-Apr-08 22:27
Ashfield24-Apr-08 22:27 
GeneralRe: database problem Pin
snouto24-Apr-08 22:29
snouto24-Apr-08 22:29 
GeneralRe: database problem Pin
Vasudevan Deepak Kumar24-Apr-08 22:57
Vasudevan Deepak Kumar24-Apr-08 22:57 
GeneralRe: database problem Pin
Blue_Boy24-Apr-08 22:39
Blue_Boy24-Apr-08 22:39 
GeneralRe: database problem Pin
snouto24-Apr-08 22:42
snouto24-Apr-08 22:42 
GeneralRe: database problem Pin
Blue_Boy24-Apr-08 22:45
Blue_Boy24-Apr-08 22:45 
GeneralRe: database problem Pin
snouto24-Apr-08 22:48
snouto24-Apr-08 22:48 
GeneralRe: database problem Pin
Blue_Boy24-Apr-08 22:50
Blue_Boy24-Apr-08 22:50 
GeneralRe: database problem Pin
Vasudevan Deepak Kumar24-Apr-08 22:59
Vasudevan Deepak Kumar24-Apr-08 22:59 
RantRe: database problem Pin
snouto24-Apr-08 23:06
snouto24-Apr-08 23:06 
GeneralRe: database problem Pin
Blue_Boy24-Apr-08 23:17
Blue_Boy24-Apr-08 23:17 
GeneralRe: database problem Pin
snouto24-Apr-08 23:23
snouto24-Apr-08 23:23 
GeneralRe: database problem Pin
Blue_Boy24-Apr-08 23:50
Blue_Boy24-Apr-08 23:50 
GeneralRe: database problem [modified] Pin
Ashfield27-Apr-08 7:28
Ashfield27-Apr-08 7:28 
GeneralRe: database problem Pin
snouto27-Apr-08 21:57
snouto27-Apr-08 21:57 

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.