“MySQL Excluir tabela com chave estrangeira” Respostas de código

MySQL Remova a restrição de chave estrangeira

ALTER TABLE jobs DROP FOREIGN KEY constraint_name 
Hiren Reshamwala

soltar a chave estrangeira mysql

ALTER TABLE table_name DROP FOREIGN KEY constraint_name
Lonely Lapwing

MySQL Excluir tabela com chave estrangeira

SET FOREIGN_KEY_CHECKS = 0;
drop table if exists customers;
drop table if exists orders;
drop table if exists order_details;
SET FOREIGN_KEY_CHECKS = 1;
Red Team

Como abandonar uma restrição de chave estrangeira no MySQL?

ALTER TABLE table_name 
DROP FOREIGN KEY constraint_name;
Code language: SQL (Structured Query Language) (sql)
Joyous Jaguar

Respostas semelhantes a “MySQL Excluir tabela com chave estrangeira”

Perguntas semelhantes a “MySQL Excluir tabela com chave estrangeira”

Mais respostas relacionadas para “MySQL Excluir tabela com chave estrangeira” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código