Saturday , April 20 2024

What is Table Variables

 

Table Variable is a special data type. In the query we can create and insert a result set into the table variables and use it again later.

The Table Variable is similar to the Temp tables. But there are some differences.

You can find the differences between Temp tables and Table Variables in the article “Differences Between Temp Table and Table Variable“.

You can create a Table Variable as follows, add a record, and select.

 

In the above script, you can transfer the records in your table to the Table Variable by typing another select expression instead of testkayıt.

Table Variables are deleted when the stored procedure or function is finished.

You can not transfer data to the table variable with the expression Select INTO.

There is no transaction logic in Table Variable. After BEGIN TRANSACTION, you can not ROLLBACK.

When calculating a query plan for a query made to a table of type Table Variable, SQL Server thinks that there is no record in the table and prepares the query plan accordingly.

So if you put your large datasets into the Table Variable, you will have performance bottlenecks.

You can use the temp table for large datasets.

Once created, you can not alter the Table Variable.

Before SQL Server 2014, indexes could be created with Primary Key and Unique Constraints.

Non unique index could not be created. With SQL Server 2014, the non unique index can be created as follows.

 

Basically you can think of Table Variables and Temp Tables doing the same thing.

But if you examine it in detail, you will see that there are a lot of differences.

You may want to look at the article titled “Differences Between Temp Table and Table Variable“.

Loading

About dbtut

We are a team with over 10 years of database management and BI experience. Our Expertises: Oracle, SQL Server, PostgreSQL, MySQL, MongoDB, Elasticsearch, Kibana, Grafana.

Leave a Reply

Your email address will not be published. Required fields are marked *

Categories