My sql is rusty

I have a statement which selects a number of records from 3 tables:
select T1.col1,T1.col2,T2.col1,T3.col1
from table1 T1 ,table2 T2 ,table3 T3
where T1.col1=T2.col1
and T1.col2=T3.col1
How do I modify this statement to delete those records from table1? table1 does have PKs.
Thanks in advance