Click here to Skip to main content
15,890,043 members
Home / Discussions / Database
   

Database

 
GeneralRe: Infobright and Analytics Pin
Chris Maunder23-Feb-12 16:45
cofounderChris Maunder23-Feb-12 16:45 
GeneralRe: Infobright and Analytics Pin
Shameel23-Feb-12 17:20
professionalShameel23-Feb-12 17:20 
AnswerRe: Infobright and Analytics Pin
R. Giskard Reventlov23-Feb-12 7:23
R. Giskard Reventlov23-Feb-12 7:23 
GeneralRe: Infobright and Analytics Pin
Dan Mos25-Feb-12 5:35
Dan Mos25-Feb-12 5:35 
QuestionGet Just The Latest Pin
GenJerDan23-Feb-12 3:46
GenJerDan23-Feb-12 3:46 
AnswerRe: Get Just The Latest Pin
Chris Meech23-Feb-12 4:35
Chris Meech23-Feb-12 4:35 
GeneralRe: Get Just The Latest Pin
GenJerDan23-Feb-12 4:45
GenJerDan23-Feb-12 4:45 
GeneralRe: Get Just The Latest Pin
Chris Meech23-Feb-12 4:48
Chris Meech23-Feb-12 4:48 
In that case try this then
select t.ID
      ,t.col2
      ,t.col3
  from table t
      ,(  select col2
                ,max(ID) id
            from table
           group by col2
       ) gt
 where t.id = gt.id


Again, off the top of my head. Smile | :)
Chris Meech
I am Canadian. [heard in a local bar]

In theory there is no difference between theory and practice. In practice there is. [Yogi Berra]

posting about Crystal Reports here is like discussing gay marriage on a catholic church’s website.[Nishant Sivakumar]

GeneralRe: Get Just The Latest Pin
GenJerDan23-Feb-12 9:45
GenJerDan23-Feb-12 9:45 
AnswerRe: Get Just The Latest Pin
David Mujica23-Feb-12 5:15
David Mujica23-Feb-12 5:15 
QuestionOrder of tables in an Inner Join Pin
dbrenth22-Feb-12 3:25
dbrenth22-Feb-12 3:25 
AnswerRe: Order of tables in an Inner Join Pin
Shameel22-Feb-12 3:36
professionalShameel22-Feb-12 3:36 
Questiontrouble in connecting to Postgre SQL from web server. Pin
hellono121-Feb-12 20:43
hellono121-Feb-12 20:43 
AnswerRe: trouble in connecting to Postgre SQL from web server. Pin
Pete O'Hanlon22-Feb-12 2:50
mvePete O'Hanlon22-Feb-12 2:50 
GeneralRe: trouble in connecting to Postgre SQL from web server. Pin
hellono122-Feb-12 4:05
hellono122-Feb-12 4:05 
AnswerRe: trouble in connecting to Postgre SQL from web server. Pin
Luc Pattyn22-Feb-12 2:56
sitebuilderLuc Pattyn22-Feb-12 2:56 
GeneralRe: trouble in connecting to Postgre SQL from web server. Pin
hellono122-Feb-12 4:06
hellono122-Feb-12 4:06 
Questiondesign a database Pin
messages19-Feb-12 5:06
messages19-Feb-12 5:06 
AnswerRe: design a database Pin
Eddy Vluggen19-Feb-12 5:39
professionalEddy Vluggen19-Feb-12 5:39 
GeneralRe: design a database Pin
Hamid_RT19-Feb-12 5:53
Hamid_RT19-Feb-12 5:53 
AnswerRe: design a database Pin
Eddy Vluggen19-Feb-12 6:09
professionalEddy Vluggen19-Feb-12 6:09 
AnswerRe: design a database Pin
Luc Pattyn19-Feb-12 6:55
sitebuilderLuc Pattyn19-Feb-12 6:55 
GeneralRe: design a database Pin
messages19-Feb-12 17:22
messages19-Feb-12 17:22 
AnswerRe: design a database Pin
Mycroft Holmes19-Feb-12 12:08
professionalMycroft Holmes19-Feb-12 12:08 
GeneralRe: design a database Pin
messages19-Feb-12 17:21
messages19-Feb-12 17:21 

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.