devxlogo

Create/Drop Table Problem

Create/Drop Table Problem

Question:
When I execute this query:

 create table #T1 ( pk numeric( 9 ) ) drop table #T1 create table #T1 ( pk numeric( 9 ) ) drop table #T1 

The second create can’t execute because there’s already an object #T1. So the first Drop hasn’t done its job when the second create starts.

Why and how can I solve this problem?

Answer:
I think your problem will go away when you insert a GO between each line.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist