Hash Table in SQL Server?

15,480

Hashtable is used to store temporary data.

1.The Hashtable object contains items in key/value pairs. The keys are used as indexes, and very quick searches can be made for values by searching through their keys.

2.Temporary tables are a useful tool in SQL Server provided to allow for short term use of data. There are two types of temporary table in SQL Server, local and global.

When you use single # is define for Local Temporary Table, when use double # is define Global temporary tables

Please check this link.

http://www.nullskull.com/q/10298657/what-is-difference-between-temp-table-and-hash-table-in-sql--server.aspx (check more other links in this link to understand more)

https://www.simple-talk.com/sql/t-sql-programming/temporary-tables-in-sql-server/

Share:
15,480

Related videos on Youtube

GK1960
Author by

GK1960

Updated on August 30, 2022

Comments

  • GK1960
    GK1960 over 1 year

    Can anybody please explain hash table in SQL Server?

    Is it same as a temp table? I searched for some examples in google for hash table, but can't find any

    Thanks in advance