Search
 
SCRIPT & CODE EXAMPLE
 

SQL

temp table vs variable table in sql server

DECLARE @TableExample TABLE(some columns); --Table variable.

CREATE TABLE #TempTable(Ssome columns); --Temporal table.

Temp tables are a good choice if you're handling large data but if it's a small
data that you'll be handling, table variable are a great choice since they operate
on the ram(memory).
Comment

PREVIOUS NEXT
Code Example
Sql :: sql convert varchar to date 
Sql :: sql table 
Sql :: connexion mysql 
Sql :: update table disable constraint 
Sql :: update and replace mysql 
Sql :: mariadb hours between two dates 
Sql :: select list is not in group by clause and contains nonaggregated column codeigniter 
Sql :: what is delimiter in mysql 
Sql :: how to put value in variable mysql 
Sql :: do postgresql 
Sql :: Get first 10 in sql 
Sql :: insensitive case match sqlalchemy 
Sql :: How to add a Try/Catch to SQL Stored Procedure 
Sql :: mysql check date range 
Sql :: oracle login as sysdba 
Sql :: SQL ORDER BY ASC (Ascending Order) 
Sql :: mysql backup database 
Sql :: postgresql remove new line from string 
Sql :: else if mysql 
Sql :: rename table sqlite 
Sql :: SQL Server Altering Column to be Unique 
Sql :: como consultar registros duplicados en mysql 
Sql :: if column value is null then in mysql 
Sql :: select columns postgres 
Sql :: sql query rename table 
Sql :: sql find table by name 
Sql :: intellij mysql set timezone 
Sql :: sql delete column 
Sql :: encrypt and decrypt in sql server 
Sql :: update in sql server table 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =