Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1030521
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T12:42:47+00:00 2026-05-16T12:42:47+00:00

This is the case. There are 3 tables – state, region and city. If

  • 0

This is the case.
There are 3 tables – state, region and city. If I delete a state with the name “France”, I want that all regions and cities belonging to this state be deleted as well. How to do this in T-SQL?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T12:42:48+00:00Added an answer on May 16, 2026 at 12:42 pm

    I’m assuming you haven’t set up cascading deletes, so you’ve got to work your way from the bottom up: delete cities first, then regions, then state.

    delete from c
        from city c
            inner join region r
                on c.region_id = r.region_id
            inner join state s
                on r.state_id = s.state_id
        where s.state = 'France'
    
    delete from r
        from region r
            inner join state s
                on r.state_id = s.state_id
        where s.state = 'France'
    
    delete from s
        from state s
        where s.state = 'France'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

we are experiencing a few problems with the IDisposable pattern. In this case there
This would seem to be the case in Firefox 3.5+, there I can instantiate
I'm just wondering if there is a best case to write this code: $('#set_duration_30').click(function(event)
I have a use case with NServiceBus explained in this question. Essentially there is
I have a scenario where: there are two (or more) tables that represent independent
I want to download tables from metal-archives.com, exactly from http://www.metal-archives.com/artist/rip , but there is
I would like to know how this can be achieved. Assume: That there's a
Is it possible to create a database such that there are 2 tables across
Suppose that a product can have up to five (5) complaints. In this case,
If I have two tables such as this: CREATE TABLE #table1 (id INT, name

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.