Tag: code
-
How to find rows which exist in new table but not in old table – MySQL
SQL Query: SELECT t1.stone FROM newatt t1 LEFT JOIN att t2 ON t2.stone = t1.stone WHERE t2.stone IS NULL newatt = new table (contains updated extra rows) att = old table stone = column name on both tables
-
Start a magento instance programmatically
This Code: