The select works fine. Adding the insert into causes it to hang. How do I get the results into a new table?
INSERT INTO table3 (
id,lastn,firstn,addr3,state)
SELECT t1.id,t1.lastn,t1.firstn,addr3,t1.state
FROM cust t1
INNER JOIN(
SELECT lastn+firstn+state+addr3 AS dupmatch FROM cust...