Aleks
asked on
Copy data from one table to another
I have two tables, i need to copy data from one to another, below are the table names and field names, they are in the order in which they should be copied, like cases.id should be copied to activities.caseid, etc ...
table 1: cases
id, firmid, inscasenum, aosfiledat, i140filingdate, approvaldate, expdate, 1
table 2: activities
caseid, firmid, actdesc, dateinitiated,lastmodified ,schdemail on, complete
ONLY where cases.InsCaseNum is not null
How can I do this ?
table 1: cases
id, firmid, inscasenum, aosfiledat, i140filingdate, approvaldate, expdate, 1
table 2: activities
caseid, firmid, actdesc, dateinitiated,lastmodified
ONLY where cases.InsCaseNum is not null
How can I do this ?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER