I need the following query changed into a "Select * into". I've been through every permutation i can think of and i keep getting errors. One error is on the persontypeid=persontypeid as well as the personid=personid. Not sure how to alias those, but aside from that, it's an issue of the wrong syntax being used in general, elswhere. SELECT *, CASE WHEN epd.ComplainantVictim = 1 THEN 'Victim' ELSE ptd.Description END AS PersonType FROM PersonData pd, PersonTypeDesc ptd, CFSExtraPersonData epd WHERE --pd.FormID = 779457 pd.FormTypeID IN (10000,10001,10010) AND pd.PersonTypeID = ptd.PersonTypeID AND pd.PersonID = epd.PersonID AND (ptd.Description IN ('Subject','Victim') OR epd.ComplainantVictim = 1) AND pd.LastName IS NOT NULL AND ptd.description='Subject' ORDER BY PersonType DESC