Skip to content

Instantly share code, notes, and snippets.

@puterleat
Created September 12, 2011 09:20
Show Gist options
  • Save puterleat/1210899 to your computer and use it in GitHub Desktop.
Save puterleat/1210899 to your computer and use it in GitHub Desktop.
SELECT dbo.tblResearchDyads.ResearchID, dbo.tblResearchDyads.TherID, dbo.tblResearchDyads.InTX1, dbo.tblResearchDyads.OutTX1,
dbo.tblResearchDyads.dyadid, dbo.tblResearchClients.Condition, dbo.tblResearchDyads.Experience, dbo.tblResearchDyads.clinicalexperience,
dbo.tblResearchDyads.degree, dbo.tblResearchDyads.degreeyears, dbo.tblResearchDyads.endreason, dbo.tblResearchDyads.supervisorid,
dbo.tblResearchDyads.Training
FROM dbo.tblResearchDyads INNER JOIN
dbo.tblResearchClients ON dbo.tblResearchDyads.ResearchID = dbo.tblResearchClients.ResearchID
WHERE (dbo.tblResearchClients.AIN < 3) AND (dbo.tblResearchClients.Study = 16)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment