|
show table status; -- should tell you which tables have changed, and then you can look in the table.. if that's not enough you could...
mysql -e 'select * from table' > before.txt
.. do your stuff here ..
mysql -e 'select * from table' > after.txt
then; diff before.txt after.txt
|