Guest User

Untitled

a guest
Oct 16th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. mysql> show variables like 'fo%';
  2. +--------------------+-------+
  3. | Variable_name | Value |
  4. +--------------------+-------+
  5. | foreign_key_checks | ON |
  6. +--------------------+-------+
  7. 1 row in set (0.00 sec)
  8.  
  9. mysql> SET FOREIGN_KEY_CHECKS=0;
  10. Query OK, 0 rows affected (0.00 sec)
  11.  
  12. mysql> show variables like 'fo%';
  13. +--------------------+-------+
  14. | Variable_name | Value |
  15. +--------------------+-------+
  16. | foreign_key_checks | OFF |
  17. +--------------------+-------+
  18. 1 row in set (0.00 sec)
Add Comment
Please, Sign In to add comment