Hi, I have the following query; SELECT TOP (100) PERCENT dbo.EmisPatient.PatientID, dbo.EmisPatient.BirthYear, dbo.EmisPatient.Registered FROM dbo.EmisPatient ORDER BY dbo.EmisPatient.PatientID
ResultsPatientID BirthYear Registered1 1992-01-01 Y2 1971-01-01 Y3 1953-01-01 Y
What I would like to have as output at run time are 2 results; RESULT 1PatientID BirthYear Registered1 01/01/1992 Y2 01/01/1971 Y3 01/01/1953 Y
RESULT 2PatientID BirthYear Registered1 1992 Y2 1971 Y3 1953 Y
Any help please.. Thanks