Saboor
Saboor

Reputation: 352

Interrupted Error in MySQL Workbench Query

alter table `market_market_types` 
add constraint `market_market_types_market_id_foreign` 
foreign key (`market_id`) references `market` (`id`) 
on delete cascade;

While trying to run the query above in mysql workbench I get an error that says query interrupted and no errors are displayed My view configurations are as follows

enter image description here

Upvotes: 3

Views: 2012

Answers (1)

Pascal Sancho
Pascal Sancho

Reputation: 51

you should check first if the output area height is actually visible (drag the bottom of the main view if not)

The most probable issue should be that there is no default database selected: just double clic on desired one.

Upvotes: 5

Related Questions