Alternative for EXCEPT for MariaDB/MySQL comparing all columns
问题 I know MariaDB and MySQL don't support EXCEPT. I would like to find an alternative to something like this: SELECT * FROM table EXCEPT SELECT * FROM backup_table Where the table and backup_table have the same schema. All the posts I've seen suggests that I compare a single column using "WHERE column IN (...)". The problem in my case is that I need to compare all the columns between the two tables for every table. I'm hoping to write this as procedure or function looping through all the tables,