How To Truncate A Foreign Key Constrained Table

You cannot TRUNCATE a table that has FK constraints applied on it. Becaue Truncate is not same as DELETE. We can do that by a very simple sql commands. SET FOREIGN_KEY_CHECKS = […]

How To Truncate A Foreign Key Constrained Table Read More »