About 190,000 results
Open links in new tab
  1. How do I create a foreign key in SQL Server? - Stack Overflow

    I have never "hand-coded" object creation code for SQL Server and foreign key decleration is seemingly different between SQL Server and Postgres. Here is my sql so far: drop table exams; drop table

  2. Cannot truncate table because it is being referenced by a FOREIGN KEY ...

    Oct 31, 2008 · Because TRUNCATE TABLE is a DDL command, it cannot check to see whether the records in the table are being referenced by a record in the child table. This is why DELETE works …

  3. How can I temporarily disable a foreign key constraint in MySQL?

    A very simple solution with phpMyAdmin: In your table, go to the SQL tab After you edit the SQL command that you want to run, there is a check box next to GO, named ' Enable foreign key checks' …

  4. INSERT statement conflicted with the FOREIGN KEY constraint - SQL ...

    56 You are trying to insert a record with a value in the foreign key column that doesn't exist in the foreign table. For example: If you have Books and Authors tables where Books has a foreign key constraint …

  5. How can I list all foreign keys referencing a given table in SQL Server ...

    Jan 27, 2009 · I need to remove a highly referenced table in a SQL Server database. How can I get a list of all the foreign key constraints I will need to remove in order to drop the table? (SQL answers …

  6. How to truncate a foreign key constrained table? - Stack Overflow

    SET FOREIGN_KEY_CHECKS = 0; TRUNCATE table1; TRUNCATE table2; SET FOREIGN_KEY_CHECKS = 1; With these statements, you risk letting in rows into your tables that …

  7. sql - Foreign Keys - What do they do for me? - Stack Overflow

    Apr 21, 2013 · Foreign keys provide referential integrity. The data in a foreign key column is validated - the value can only be one that already exists in the table & column defined in the foreign key. It's …

  8. sql server - Add a column with a foreign key to an existing table ...

    Apr 3, 2024 · How to add a column with a foreign key to an existing table so that it refers to the appropriate unit (ID) values?

  9. sql - What is difference between foreign key and reference key? - Stack ...

    Dec 22, 2011 · A foreign key value in one row is said to "reference" the row that contains the corresponding key value. Note the word "reference" in the prior sentence is a verb, so we may say …

  10. SQL - Unique Key, Primary Key & Foreign Key - Stack Overflow

    Apr 25, 2015 · What are the differences between Unique Key, Primary Key and Foreign Key with respect to concept of SQL? How they are different from each other?