Hi,
I've noticed that the SQLyog Structure Synchronization Tool does not highlight differences in column order. Suppose I have two different tables in two different databases that look like the following:
DB1->Table1
id
title
desc
DB2->Table2
id
desc
title
Now suppose I ran INSERT INTO db2.table2 SELECT * FROM db1.table1…
I'm using the utility to track these kinds of subtle differences so that I can catch the kinds of problems a query such as this would cause. Any suggestions? Am I missing something?