Click here to Skip to main content
15,914,820 members
Home / Discussions / Database
   

Database

 
GeneralRe: Result Set Pin
Esmo20009-Feb-05 9:04
Esmo20009-Feb-05 9:04 
GeneralRe: Result Set Pin
Christian Graus9-Feb-05 10:49
protectorChristian Graus9-Feb-05 10:49 
GeneralViewing and editing several connected tables in a DataGrid Pin
j1hammer9-Feb-05 2:46
j1hammer9-Feb-05 2:46 
GeneralDataGrid sorting Pin
Mr.Cooper9-Feb-05 0:38
Mr.Cooper9-Feb-05 0:38 
GeneralSQL Query Required ! Pin
Zishan Haider8-Feb-05 23:31
Zishan Haider8-Feb-05 23:31 
GeneralRe: SQL Query Required ! Pin
David Salter8-Feb-05 23:50
David Salter8-Feb-05 23:50 
GeneralRe: SQL Query Required ! Pin
Zishan Haider9-Feb-05 0:01
Zishan Haider9-Feb-05 0:01 
GeneralRe: SQL Query Required ! Pin
Mike Dimmick9-Feb-05 2:24
Mike Dimmick9-Feb-05 2:24 
Hey, another place where my correlation trick is useful!
SELECT Order.*
FROM Order
INNER JOIN
  (
     SELECT Symbol, MIN(Price) AS MinPrice
     FROM Order
     GROUP BY Symbol
  ) O2 ON Order.Symbol = O2.Symbol AND Order.Price = O2.MinPrice
Caveat: this trick won't work directly if there's more than one row for a given Symbol with the minimum Price value. If there is you'll get every row with that price.

Stability. What an interesting concept. -- Chris Maunder
GeneralRe: SQL Query Required ! Pin
Zishan Haider9-Feb-05 3:23
Zishan Haider9-Feb-05 3:23 
QuestionHow to set SAFEARRAY in CRecordset (ODBC) Pin
Anonymous8-Feb-05 10:10
Anonymous8-Feb-05 10:10 
GeneralNewbie Question Pin
Esmo20008-Feb-05 4:58
Esmo20008-Feb-05 4:58 
GeneralRe: Newbie Question Pin
Colin Angus Mackay8-Feb-05 6:21
Colin Angus Mackay8-Feb-05 6:21 
GeneralRe: Newbie Question Pin
Esmo20008-Feb-05 7:36
Esmo20008-Feb-05 7:36 
GeneralRe: Newbie Question Pin
Esmo20008-Feb-05 10:18
Esmo20008-Feb-05 10:18 
GeneralRe: Newbie Question Pin
Colin Angus Mackay8-Feb-05 11:39
Colin Angus Mackay8-Feb-05 11:39 
GeneralRe: Newbie Question Pin
Esmo20009-Feb-05 2:51
Esmo20009-Feb-05 2:51 
GeneralSPROC Input Parameters Pin
mav07077-Feb-05 14:29
mav07077-Feb-05 14:29 
GeneralRe: SPROC Input Parameters Pin
Colin Angus Mackay8-Feb-05 0:05
Colin Angus Mackay8-Feb-05 0:05 
GeneralRe: SPROC Input Parameters Pin
mav07078-Feb-05 2:28
mav07078-Feb-05 2:28 
GeneralDataTable Select Method Pin
numbrel7-Feb-05 14:15
numbrel7-Feb-05 14:15 
GeneralRe: DataTable Select Method Pin
Yulianto.7-Feb-05 14:54
Yulianto.7-Feb-05 14:54 
GeneralRe: DataTable Select Method Pin
numbrel7-Feb-05 15:13
numbrel7-Feb-05 15:13 
GeneralConnecting an Access project to MSDE database in Visual C++ Pin
elephantstar7-Feb-05 7:16
elephantstar7-Feb-05 7:16 
QuestionFilter summed query? Pin
Roger Alsing7-Feb-05 6:17
Roger Alsing7-Feb-05 6:17 
GeneralActive Directory (ADSI): substring search problem Pin
pelos7-Feb-05 2:06
pelos7-Feb-05 2:06 

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.