Click here to Skip to main content
15,918,041 members
Home / Discussions / Database
   

Database

 
QuestionSQL search all columns [modified] Pin
Expert Coming7-Mar-09 4:43
Expert Coming7-Mar-09 4:43 
AnswerRe: SQL search all columns Pin
Eddy Vluggen7-Mar-09 4:47
professionalEddy Vluggen7-Mar-09 4:47 
AnswerRe: SQL search all columns Pin
Kschuler9-Mar-09 8:10
Kschuler9-Mar-09 8:10 
QuestionCheck if SQL is doing some king of process Pin
cdpace6-Mar-09 22:17
cdpace6-Mar-09 22:17 
AnswerRe: Check if SQL is doing some king of process Pin
Expert Coming7-Mar-09 4:24
Expert Coming7-Mar-09 4:24 
AnswerRe: Check if SQL is doing some king of process Pin
Colin Angus Mackay7-Mar-09 12:20
Colin Angus Mackay7-Mar-09 12:20 
QuestionServer 08 Execute SQL Pin
enipla6-Mar-09 9:45
enipla6-Mar-09 9:45 
AnswerRe: Server 08 Execute SQL Pin
Colin Angus Mackay7-Mar-09 12:14
Colin Angus Mackay7-Mar-09 12:14 
GeneralRe: Server 08 Execute SQL Pin
enipla10-Mar-09 3:14
enipla10-Mar-09 3:14 
GeneralRe: Server 08 Execute SQL Pin
Colin Angus Mackay10-Mar-09 13:29
Colin Angus Mackay10-Mar-09 13:29 
GeneralRe: Server 08 Execute SQL Pin
enipla11-Mar-09 3:28
enipla11-Mar-09 3:28 
Questionuniting 3 tables Pin
suni_dotnet6-Mar-09 5:28
suni_dotnet6-Mar-09 5:28 
AnswerRe: uniting 3 tables Pin
Colin Angus Mackay7-Mar-09 12:05
Colin Angus Mackay7-Mar-09 12:05 
Questionconditional select statment Pin
Meax5-Mar-09 22:31
Meax5-Mar-09 22:31 
i have these data in the database table, Meetings

MeetingID Details Hour Minute
1 Meeting Details1 14 10
2 Meeting Details2 14 15

how can i select all the fields of MeetingID 2?


<br />
SELECT     MeetingID, Hour, Minute, Details<br />
FROM         Meetings<br />
WHERE     (Hour =<br />
                          (SELECT     MAX(Hour) <br />
                            FROM          Meetings)) AND (Minute =<br />
                          (SELECT     MAX(Minute) <br />
                            FROM          Meetings))<br />


but this code doesn't fetch any record
AnswerRe: conditional select statment Pin
J4amieC5-Mar-09 22:42
J4amieC5-Mar-09 22:42 
GeneralRe: conditional select statment Pin
Meax5-Mar-09 23:14
Meax5-Mar-09 23:14 
AnswerRe: conditional select statment Pin
Rupesh Kumar Swami5-Mar-09 22:58
Rupesh Kumar Swami5-Mar-09 22:58 
GeneralRe: conditional select statment Pin
Meax5-Mar-09 23:16
Meax5-Mar-09 23:16 
GeneralRe: conditional select statment Pin
J4amieC6-Mar-09 0:08
J4amieC6-Mar-09 0:08 
GeneralRe: conditional select statment Pin
Luc Pattyn6-Mar-09 0:42
sitebuilderLuc Pattyn6-Mar-09 0:42 
GeneralRe: conditional select statment Pin
Rupesh Kumar Swami6-Mar-09 1:07
Rupesh Kumar Swami6-Mar-09 1:07 
Questionhow to encrypt stored procedure. Pin
Manprit.bagga5-Mar-09 18:10
Manprit.bagga5-Mar-09 18:10 
AnswerRe: how to encrypt stored procedure. Pin
Eddy Vluggen6-Mar-09 0:03
professionalEddy Vluggen6-Mar-09 0:03 
QuestionRe: how to encrypt stored procedure. Pin
Manprit.bagga6-Mar-09 23:45
Manprit.bagga6-Mar-09 23:45 
AnswerRe: how to encrypt stored procedure. Pin
Adrian Pasik7-Mar-09 3:44
Adrian Pasik7-Mar-09 3:44 

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.