Click here to Skip to main content
15,891,653 members
Home / Discussions / Database
   

Database

 
AnswerRe: Convert String and Sort the the Intergers in a String ASC [modified] Pin
Niladri_Biswas29-Jun-09 5:45
Niladri_Biswas29-Jun-09 5:45 
GeneralRe: Convert String and Sort the the Intergers in a String ASC Pin
Vimalsoft(Pty) Ltd29-Jun-09 5:48
professionalVimalsoft(Pty) Ltd29-Jun-09 5:48 
GeneralRe: Convert String and Sort the the Intergers in a String ASC [modified] Pin
Niladri_Biswas29-Jun-09 5:55
Niladri_Biswas29-Jun-09 5:55 
GeneralRe: Convert String and Sort the the Intergers in a String ASC Pin
Vimalsoft(Pty) Ltd29-Jun-09 5:56
professionalVimalsoft(Pty) Ltd29-Jun-09 5:56 
QuestionProblem with joining tables in MSAccess. Pin
A k ch28-Jun-09 19:32
A k ch28-Jun-09 19:32 
AnswerRe: Problem with joining tables in MSAccess. Pin
riced28-Jun-09 22:44
riced28-Jun-09 22:44 
GeneralRe: Problem with joining tables in MSAccess. Pin
A k ch28-Jun-09 23:04
A k ch28-Jun-09 23:04 
AnswerRe: Problem with joining tables in MSAccess. Pin
Niladri_Biswas28-Jun-09 23:07
Niladri_Biswas28-Jun-09 23:07 
Try this

SELECT * FROM  
                           ( 

                                 ( STUDENTS AS A  LEFT JOIN SUBDETAILS AS B ON A.BID=B.BID)
                                   
                                  LEFT JOIN SUBJECTS C ON B.SUBID=C.SUBID
                            )

                           LEFT JOIN DETAILS D ON C.SUBID=D.SUBID 

                   WHERE D.HNO=1234 

                   AND B.BID=2 

                   AND B.SEMID=1

                   AND A.HNO=D.HNO


N.B.~ If you want to perform more than one left join in MS Access, you should use parenthesis in the From clause.

Hope this helps
Smile | :)

Niladri Biswas

GeneralRe: Problem with joining tables in MSAccess. Pin
A k ch28-Jun-09 23:33
A k ch28-Jun-09 23:33 
GeneralRe: Problem with joining tables in MSAccess. Pin
riced29-Jun-09 0:43
riced29-Jun-09 0:43 
GeneralRe: Problem with joining tables in MSAccess. Pin
A k ch29-Jun-09 1:00
A k ch29-Jun-09 1:00 
QuestionFLOAT vs NUMERIC for financial transaction Pin
devvvy28-Jun-09 15:23
devvvy28-Jun-09 15:23 
AnswerRe: FLOAT vs NUMERIC for financial transaction Pin
Niladri_Biswas28-Jun-09 16:37
Niladri_Biswas28-Jun-09 16:37 
GeneralRe: FLOAT vs NUMERIC for financial transaction Pin
devvvy28-Jun-09 16:41
devvvy28-Jun-09 16:41 
GeneralRe: FLOAT vs NUMERIC for financial transaction Pin
Niladri_Biswas28-Jun-09 16:44
Niladri_Biswas28-Jun-09 16:44 
GeneralRe: FLOAT vs NUMERIC for financial transaction Pin
devvvy28-Jun-09 16:57
devvvy28-Jun-09 16:57 
GeneralRe: FLOAT vs NUMERIC for financial transaction Pin
Niladri_Biswas28-Jun-09 17:33
Niladri_Biswas28-Jun-09 17:33 
GeneralRe: FLOAT vs NUMERIC for financial transaction Pin
Niladri_Biswas28-Jun-09 22:30
Niladri_Biswas28-Jun-09 22:30 
GeneralRe: FLOAT vs NUMERIC for financial transaction Pin
devvvy30-Jun-09 13:49
devvvy30-Jun-09 13:49 
QuestionSQL Server Express and Visual C# Pin
kikeman28-Jun-09 7:56
kikeman28-Jun-09 7:56 
AnswerRe: SQL Server Express and Visual C# Pin
Henry Minute28-Jun-09 8:13
Henry Minute28-Jun-09 8:13 
QuestionRe: SQL Server Express and Visual C# Pin
kikeman29-Jun-09 6:26
kikeman29-Jun-09 6:26 
AnswerRe: SQL Server Express and Visual C# Pin
Henry Minute29-Jun-09 6:43
Henry Minute29-Jun-09 6:43 
QuestionRe: SQL Server Express and Visual C# Pin
kikeman30-Jun-09 7:40
kikeman30-Jun-09 7:40 
AnswerRe: SQL Server Express and Visual C# Pin
Henry Minute30-Jun-09 9:24
Henry Minute30-Jun-09 9:24 

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.