Hi, Is it possible to create a SELECT statement that can pull all the fields from from 1 table in a statement that has 2 or more tables joined together. I know it can be done with 1 table like this..Select * From Table1
But can it be done in a statment like this..SELECT <Need all fields from table1>,b.last_name,b.first_name,c.sales,c.ytdtotalFROM table1 a INNER JOIN table2 b ON a.access=b.access INNER JOINtable3 c ON a.access=c.accessORDER BY b.last_name,b.first_name,a.id
where I want all fields from table1 and only specified fields from table2 and table3.Thanks,Razzle