Previous |
Next
What is the SQL DROP FOREIGN KEY Clause?The SQL DROP FOREIGN KEY clause is the SQL clause that removes an entire SQL foreign key from a table. It is a clause of the SQL ALTER TABLE statement. Why Use the SQL DROP FOREIGN KEY Clause?You may drop a foreign key permanently when it is no longer useful or temporarily. If the foreign key is harming performance or not helping referential integrity it could be dropped. Foreign keys may slow down the loading of data because they must be validated during the data load process. For high performance loads, a foreign key could be dropped for the duration of a load and then recreated. Before dropping a table, it may be necessary to drop foreign keys refering to that table. How To Use the SQL DROP FOREIGN KEY ClauseThe SQL DROP FOREIGN KEY command is used as follows. SQL DROP FOREIGN KEY Clause Syntax
SQL DROP FOREIGN KEY Statement Example The following example drops a foreign key named FK_SALES_ORDER_LINE_PRODUCT on a table named SALES_ORDER_LINE.
|
SQL OVERVIEW
SQL BASICS
SQL SELECT
SQL WHERE
SQL INSERT
SQL UPDATE
SQL DELETE
SQL ADMINISTRATION
SQL CREATE DATABASE
SQL DROP DATABASE
SQL CREATE TABLE
SQL ALTER TABLE
SQL DROP TABLE
SQL CREATE INDEX
SQL DROP INDEX
SQL ADD FOREIGN KEY
SQL DROP FOREIGN KEY
SQL CREATE VIEW
SQL DROP VIEW
SQL ADVANCED
SQL CONCAT
SQL SUBSTRING
SQL TRIM
SQL AND & OR
SQL IN
SQL BETWEEN
SQL LIKE
SQL DISTINCT
SQL GROUP BY
SQL AGGREGATE
SQL HAVING
SQL ORDER BY
SQL JOIN
SQL OUTER JOIN
SQL SYNTAX
| HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX |
| Copyright© 1999-2006, First Place Software, Inc. |






