You can create the same table twice in your code.
I had the same problem, I copied a section of code that I wanted to reuse (modify) in the same procedure, including the CREATE TABLE statement - I effectively created the table twice - and even though the CREATE TABLE statements were between separate markers BEGIN and END , and there was a DROP TABLE statement discarding the 1st βinstanceβ before the 2nd CREATE statement, I ran into this exact error.
source share