In SQL, how can you modify an existing table to add a foreign key constraint referencing another table? - Study24x7
Social learning Network

Warning: include(./views/auth.php): failed to open stream: Permission denied in /var/www/html/live/loginRightSlider.php on line 18

Warning: include(): Failed opening './views/auth.php' for inclusion (include_path='.:/usr/share/php') in /var/www/html/live/loginRightSlider.php on line 18

Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/html/live/makepost.php on line 52
4 followers study24x7 03 Oct 2024 12:16 PM study24x7 study24x7

In SQL, how can you modify an existing table to add a foreign key constraint referencing another table?

A

ALTER TABLE table_name ADD CONSTRAINT fk_name FOREIGN KEY (column1) REFERENCES other_table(column2)

B

ALTER TABLE table_name MODIFY COLUMN column_name FOREIGN KEY REFERENCES other_table(column_name)

C

ALTER TABLE table_name ADD FOREIGN KEY (column_name) REFERENCES other_table

D

USE table_name ADD FOREIGN KEY REFERENCES other_table

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles