this should work
SELECT
a.EmpNo,
a.EmpName,
b.IncCode,
b.Amount,
c.DedCode,
c.Amount
From [table a] a
LEFT OUTER JOIN [table b] b ON a.EmpNo = b.EmpNo
LEFT OUTER JOIN [table c] c ON a.EmpNo = c.EmpNo
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
Technical Editor for:
Professional Search Engine Optimization with ASP.NET
Professional IIS 7 and ASP.NET Integrated Programming
Wrox Blox: Introduction to Google Gears
Wrox Blox: Create Amazing Custom User Interfaces with WPF and .NET 3.0
================================================== =========