Good people, let's go to one more question, I hope you can help me.
I have the following problem:
When I create a foreign key linking to another field in another table I always define it as CASCADE . But when I enter a field (say in this table I have foreign keys attached to it and one of them can be NULL ) I can not successfully register the table for the fact it does not find in the other referenced table value.
I think it's because it's using the CASCADE type and SET NULL would allow this field to exist with the NULL value.
Defining my foreign key as SET NULL will solve my problem?