In Java you can do the following to locally scope variables within a method:
public void blah() {
{
int a = 1;
int b = 2;
}
{
int a = 3;
int b = 4;
}
}
I don't even know what the name for this technique is, I've only needed to use it once or twice. In my current situation, this may really come in handy with this SQL project.
Is this even possible in SQL?
I'm using MS SQL Server... To give more context to the situation:
We have several sql scripts stored as files which help perform various operations on a database. These scripts are fairly large and were designed to be run independently. Sometimes, we need to run several of these scripts together and deliver in a single file.
Since most of these script have common variables we run into a conflict when joining these scripts together. Of course, it is easy to move all variable declaration to the beginning of the file, but the goal is to have this process automated.