Here is my problem :
I have a “Machines” table with a column’s row looking like this, but longer :
Microsoft Application Error Reporting
Microsoft Application
Error ReportingMicrosoft Office Professional Plus
2010Microsoft Office OneNote MUI (English) 2010
Microsoft Office InfoPath MUI (English) 2010Microsoft
Office Access MUI (English) 2010Microsoft Office Shared
Setup Metadata MUI (English) 2010Microsoft Office Excel MUI
(English) 2010Microsoft Office Shared 64-bit Setup Metadata
MUI (English) 2010
And I have a “Exceptions” table, with a column’s row like it :
Microsoft Office OneNote MUI (English) 2010
Microsoft Office
InfoPath MUI (English) 2010
What I’d like to do is taking only the text present in the first table ( and NOT in the second ) and putting it into a third table.
Sorry if I’m not clear, I did my best with my english.. Thanks in advance.
Edit : Here is how my row looks. Click
Assuming you want the rows that are in Machines (without the ones that are in Exceptions), you can select them like this:
You can then insert them using insert into like this (assuming Machines and the newTable with the same columns):
If they have different columns, you can select them..
Since they are in all in the same column and row, you’ll need to use
liketo check if they are present andreplaceto delete the needed part if so.