SELECT *
FROM Table1
JOIN Table2
ON Table1.Key = Table2.Key
JOIN Table3
ON Table1.Key = Table3.Key
This assumes that the PK on Table1 matches an FK on Table2 & Table3. Either way, you can then use query anaylizer to output to text or run it through sqlcmd to output as text or some other process to output as text.