Click here to Skip to main content
15,896,063 members
Home / Discussions / Database
   

Database

 
AnswerRe: how to enter the records from one table to another table at the same time Pin
Sandesh M Patil14-Apr-10 3:24
Sandesh M Patil14-Apr-10 3:24 
GeneralRe: how to enter the records from one table to another table at the same time Pin
Jon_Boy14-Apr-10 6:54
Jon_Boy14-Apr-10 6:54 
AnswerRe: how to enter the records from one table to another table at the same time Pin
dan!sh 14-Apr-10 7:42
professional dan!sh 14-Apr-10 7:42 
Questionsearch from multiple tables Pin
test-0913-Apr-10 21:17
test-0913-Apr-10 21:17 
AnswerRe: search from multiple tables Pin
www.Developerof.NET13-Apr-10 21:50
www.Developerof.NET13-Apr-10 21:50 
AnswerRe: search from multiple tables Pin
Mycroft Holmes13-Apr-10 22:38
professionalMycroft Holmes13-Apr-10 22:38 
GeneralRe: search from multiple tables Pin
test-0913-Apr-10 22:54
test-0913-Apr-10 22:54 
GeneralRe: search from multiple tables Pin
Mycroft Holmes13-Apr-10 23:06
professionalMycroft Holmes13-Apr-10 23:06 
This query uses what I call Oracle joins where the links are in the where clause, never to be seen in any database I own. Use the propert join methods. Here is a sample from a view I have

FROM dbo.FactConsoTB AS F
  INNER JOIN dbo.Branch AS B ON F.BranchID = B.BranchID
  INNER JOIN dbo.lnkAccountProduct AS L ON F.APLinkID = L.APLinkID
  INNER JOIN dbo.Account AS A ON L.AccountID = A.AccountID
  INNER JOIN dbo.Product AS P ON L.ProductID = P.ProductID
  INNER JOIN dbo.Currency AS C ON F.CurrencyID = C.CurrencyID
  INNER JOIN dbo.Currency AS BC ON F.BaseCurrencyID = BC.CurrencyID
  INNER JOIN dbo.ProductCategory ON P.ProductCategoryID = dbo.ProductCategory.ProductCategoryID


test-09 wrote:
select projectID=projects.projectid


Why are you useing this.
Never underestimate the power of human stupidity
RAH

GeneralRe: search from multiple tables Pin
test-0913-Apr-10 23:12
test-0913-Apr-10 23:12 
GeneralRe: search from multiple tables Pin
Mycroft Holmes13-Apr-10 23:38
professionalMycroft Holmes13-Apr-10 23:38 
AnswerRe: search from multiple tables Pin
Eddy Vluggen14-Apr-10 5:37
professionalEddy Vluggen14-Apr-10 5:37 
QuestionConcatenating all fields in a resultset Pin
Dewald13-Apr-10 4:46
Dewald13-Apr-10 4:46 
AnswerRe: Concatenating all fields in a resultset Pin
David Mujica13-Apr-10 5:33
David Mujica13-Apr-10 5:33 
GeneralRe: Concatenating all fields in a resultset Pin
Dewald13-Apr-10 21:01
Dewald13-Apr-10 21:01 
AnswerRe: Concatenating all fields in a resultset Pin
Mycroft Holmes13-Apr-10 22:35
professionalMycroft Holmes13-Apr-10 22:35 
GeneralRe: Concatenating all fields in a resultset Pin
Dewald14-Apr-10 0:38
Dewald14-Apr-10 0:38 
GeneralRe: Concatenating all fields in a resultset Pin
Mycroft Holmes14-Apr-10 2:06
professionalMycroft Holmes14-Apr-10 2:06 
QuestionWhat is the Best Approach for this Request Pin
Vimalsoft(Pty) Ltd13-Apr-10 0:56
professionalVimalsoft(Pty) Ltd13-Apr-10 0:56 
AnswerRe: What is the Best Approach for this Request Pin
Mycroft Holmes13-Apr-10 2:37
professionalMycroft Holmes13-Apr-10 2:37 
GeneralRe: What is the Best Approach for this Request Pin
Vimalsoft(Pty) Ltd13-Apr-10 2:54
professionalVimalsoft(Pty) Ltd13-Apr-10 2:54 
GeneralRe: What is the Best Approach for this Request Pin
Mycroft Holmes13-Apr-10 4:15
professionalMycroft Holmes13-Apr-10 4:15 
GeneralRe: What is the Best Approach for this Request Pin
Vimalsoft(Pty) Ltd13-Apr-10 4:17
professionalVimalsoft(Pty) Ltd13-Apr-10 4:17 
QuestionFamily Tree Database Pin
vdtrip12-Apr-10 10:06
vdtrip12-Apr-10 10:06 
AnswerRe: Family Tree Database Pin
Jörgen Andersson12-Apr-10 11:51
professionalJörgen Andersson12-Apr-10 11:51 
AnswerRe: Family Tree Database Pin
Mycroft Holmes12-Apr-10 14:18
professionalMycroft Holmes12-Apr-10 14:18 

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.