Answers for "error code 1451 sql"

SQL
0

error code 1451 sql

SET FOREIGN_KEY_CHECKS=0;
Now you can fire your query.
DELETE FROM TABLE WHERE ID = 'Somthing';
You can enable foreign key again
SET FOREIGN_KEY_CHECKS=1;
Posted by: Guest on August-27-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language