Yahoo Poland Wyszukiwanie w Internecie

Search results

  1. To add "Cascade delete" to an existing foreign key in SQL Server Management Studio: First, select your Foreign Key, and open it's "DROP and Create To.." in a new Query window. Then, just add ON DELETE CASCADE to the ADD CONSTRAINT command: And hit the "Execute" button to run this query.

  2. 12 sie 2021 · Cascading deletes are needed when a dependent/child entity can no longer be associated with its current principal/parent. This can happen because the principal/parent is deleted, or it can happen when the principal/parent still exists but the dependent/child is no longer associated with it.

  3. 24 maj 2024 · Usuwanie kaskadowe, znane również jako „cascade delete”, to mechanizm referencyjnej integralności w systemach baz danych, który automatycznie usuwa wszystkie powiązane rekordy w tabelach podrzędnych po usunięciu rekordu w tabeli nadrzędnej.

  4. 20 cze 2013 · ON DELETE CASCADE: if a row of the referenced table is deleted, then all matching rows in the referencing table are deleted. ON DELETE SET NULL : if a row of the referenced table is deleted, then all referencing columns in all matching rows of the referencing table to be set to null.

  5. Cascade Delete to mechanizm służący do automatycznego usuwania powiązanych rekordów z tabeli nadrzędnej w relacyjnej bazie danych. Oznacza to, że gdy usuniemy rekord z tabeli rodzica, wszystkie powiązane z nim rekordy w tabeli potomnej zostaną usunięte w sposób automatyczny.

  6. Usuwanie kaskadowe jest wymagane, gdy jednostka zależna/podrzędna nie może być już skojarzona z bieżącym podmiotem zabezpieczeń/elementem nadrzędnym.

  7. www.mysqltutorial.org › mysql-basics › mysql-on-delete-cascadeMySQL ON DELETE CASCADE

    This tutorial shows you how to use MySQL ON DELETE CASCADE to automatically delete data from a child table when you delete data from the parent table.

  1. Ludzie szukają również