Click here to Skip to main content
15,895,740 members
Home / Discussions / Database
   

Database

 
AnswerRe: Using INSERT to copy a table Pin
Chemisus10-May-06 18:26
Chemisus10-May-06 18:26 
QuestionDetaching Database on SQL server 2000 Pin
For_IT10-May-06 5:40
For_IT10-May-06 5:40 
AnswerRe: Detaching Database on SQL server 2000 Pin
Colin Angus Mackay10-May-06 7:19
Colin Angus Mackay10-May-06 7:19 
GeneralRe: Detaching Database on SQL server 2000 Pin
For_IT10-May-06 10:19
For_IT10-May-06 10:19 
AnswerRe: Detaching Database on SQL server 2000 Pin
Eric Dahlvang10-May-06 8:10
Eric Dahlvang10-May-06 8:10 
QuestionSimple change in the connection string problem... VB.net 2005 Pin
nirishere10-May-06 5:02
nirishere10-May-06 5:02 
QuestionQuery Problem? Pin
pubududilena10-May-06 1:38
pubududilena10-May-06 1:38 
AnswerRe: Query Problem? Pin
Michael Potter10-May-06 3:34
Michael Potter10-May-06 3:34 
I don't have your data so I will take a guess without testing:
SELECT
    AutoNumber,
    MarkOne.Price
FROM
    MarkOne
INNER JOIN
    (SELECT 
        DestinationAirport,
        DepartureAirport,
        AirLineCode,
        FareClass,
        MIN(Price) AS Price
     FROM 
        dbo.MarkOne 
     GROUP BY 
        DestinationAirport,
        DepartureAirport,
        AirLineCode,
        FareClass) gMark
     ON(gMark.DestinationAirport = MarkOne.DestinationAirport AND
        gMark.DepartureAirport = MarkOne.DepartureAirport AND
        gMark.AirLineCode = MarkOne.AirLineCode AND
        gMark.FareClass = MarkOne.FareClass AND	
        gMark.Price = MarkOne.Price)

AnswerRe: Query Problem? Pin
chinnasrihari11-May-06 3:49
chinnasrihari11-May-06 3:49 
QuestionSQL server 2000 Some friend help me Pin
AnhTin9-May-06 19:02
AnhTin9-May-06 19:02 
AnswerRe: SQL server 2000 Some friend help me Pin
Colin Angus Mackay9-May-06 21:38
Colin Angus Mackay9-May-06 21:38 
QuestionCan anyone answer my Query? Pin
Deepasubramanian9-May-06 17:29
Deepasubramanian9-May-06 17:29 
AnswerRe: Can anyone answer my Query? Pin
Chinchu Raj S9-May-06 21:40
Chinchu Raj S9-May-06 21:40 
AnswerRe: Can anyone answer my Query? Pin
Colin Angus Mackay9-May-06 22:02
Colin Angus Mackay9-May-06 22:02 
QuestionSQL Server 2000, uniqueidentifier (guid) PK columns, and ADO.NET 2.0 Pin
Jon Rista9-May-06 16:42
Jon Rista9-May-06 16:42 
AnswerRe: SQL Server 2000, uniqueidentifier (guid) PK columns, and ADO.NET 2.0 Pin
Jon Rista10-May-06 8:08
Jon Rista10-May-06 8:08 
QuestionNeed advice for Parent Child insert in transaction mode Pin
sandi antono9-May-06 4:28
sandi antono9-May-06 4:28 
AnswerRe: Need advice for Parent Child insert in transaction mode Pin
Paddy Boyd9-May-06 5:01
Paddy Boyd9-May-06 5:01 
GeneralThank's Pin
sandi antono9-May-06 5:27
sandi antono9-May-06 5:27 
QuestionMicrosoft sql server 2005 licensing query Pin
Fu Manchu9-May-06 3:20
Fu Manchu9-May-06 3:20 
AnswerRe: Microsoft sql server 2005 licensing query Pin
Michael Potter9-May-06 3:55
Michael Potter9-May-06 3:55 
GeneralRe: Microsoft sql server 2005 licensing query Pin
Fu Manchu9-May-06 4:22
Fu Manchu9-May-06 4:22 
GeneralRe: Microsoft sql server 2005 licensing query Pin
Michael Potter9-May-06 5:01
Michael Potter9-May-06 5:01 
Questionjoins Pin
PuccPukka9-May-06 0:51
PuccPukka9-May-06 0:51 
AnswerRe: joins Pin
albCode9-May-06 2:34
albCode9-May-06 2:34 

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.