There are 4 tables in my database.Users,User_Organization,User_Status_Code,User_Organization Role.Users have primary key column user_id.and remaining tables referencing this column user_id as primary key.If want to delete a row in Users table then remaining tables rows will effect,so I want to delete all the records which are referencing in other tables rows should delete.
What is the command in sql server to do this
🙂