I currently have two tables. One fairly large and one suitably small. The large table is made up of many inserts from tables in the same style as the small one.
I want to insert (probably using insert into) the records from the small table into the big table IF they are not already present in the big table.
Points of Note
- Both tables have identical column titles so my attempts at joins aren't working (Error Code 1060 - see http://www.codeproject.com/Articles/33052/Visual-Representation-of-SQL-Joins under 'Left-Excluding Join' for the syntax I was using)
- The tables do not have (and can not be given) a primary key / Unique Key
- Rows are identical if and only if each column store the same value