Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
teamjai
Yak Posting Veteran
52 Posts |
Posted - 2015-04-21 : 03:23:07
|
Hi,I want to retrieve the data from table "Document" and i need to check the below condition using 3 tables.Document.ID=Project.ID=Group.IDHere Project and Group is an another table.Query : Select Document.Name from Document, Group, Project whereDocument.ID = Group.ID and Document.ID= Project.ID.is this right a way.Could you please correct my Query.Thanks |
|
Maithil
Starting Member
29 Posts |
Posted - 2015-04-21 : 04:29:13
|
Hi,As Per Right LogicYour Query Should be Like this Select Document.Name from Document, Group, Project whereDocument.GroupId = Group.ID and Group.ProjectID= Project.ID. |
|
|
nirene
Yak Posting Veteran
98 Posts |
Posted - 2015-04-21 : 05:06:39
|
Hi,Select Document.Name from Document DInner Join Group G On D.GroupId = G.ID Inner Join Project P On G.ProjectID= P.IDNirene |
|
|
teamjai
Yak Posting Veteran
52 Posts |
Posted - 2015-04-21 : 07:39:08
|
quote: Originally posted by nirene Hi,Select Document.Name from Document DInner Join Group G On D.GroupId = G.ID Inner Join Project P On G.ProjectID= P.IDNirene
Thanks You. its working fine |
|
|
|
|
|