多种临时表效率的对比分析
多种临时表效率的对比分析 老帅(20141107) 平时在写存储过程的时候,经常会用到临时表,而临时表的用法到底有几种,哪种效率更好呢?我们来做个对比分析。 实验数据:表a有400万条记录,只查询一个字段Title 1. 直接查询 --开启时间分析 SET STATISTICS TI
多种临时表效率的对比分析老帅(20141107)平时在写存储过程的时候,经常会用到临时表,而临时表的用法到底有几种,哪种效率更好呢?我们来做个对比分析。实验数据:表a有400万条记录,只查询一个字段Title1. 直接查询--开启时间分析SET STATISTICS TIME ON
GO--查询SELECT Title FROM a --结果SQL Server 执行时间:占用时间 = 22013 毫秒。
2.变量表--开启时间分析SET STATISTICS TIME ON
GO--插入DECLARE @tmpA TABLE( Title VARCHAR(200))INSERT INTO @tmpASELECT Title FROM a--查询SELECT * FROM @tmpA--结果SQL Server 执行时间:占用时间 = 22913 毫秒。
3.临时表--开启时间分析SET STATISTICS TIME ON
GO--插入CREATE TABLE #tmpA( Title VARCHAR(200))INSERT INTO #tmpASELECT Title FROM a--查询SELECT * FROM #tmpA--结果SQL Server 执行时间:占用时间 = 22743 毫秒。
4.不创建临时表,直接插入到临时表--开启时间分析SET STATISTICS TIME ON
GO--插入SELECT * INTO #tmpA FROM(SELECT Title FROM a) AS b--查询SELECT * FROM #tmpA--结果SQL Server 执行时间: 占用时间 = 22671 毫秒。
5.使用WITH AS临时表--开启时间分析SET STATISTICS TIME ON;--插入WITH tmpA AS(SELECT Title FROM a)--查询SELECT * FROM tmpA--结果SQL Server 执行时间:占用时间 = 22188 毫秒。
通过以上的分析,很容易看出哪种方法效率更高了。在存储过程中尽量使用临时表来存储临时数据,不要使用变量表。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In today's smartphone market, consumers are faced with more and more choices. With the continuous development of technology, mobile phone manufacturers have launched more and more models and styles, among which Vivox100 and Vivox100Pro are undoubtedly two products that have attracted much attention. Both mobile phones come from the well-known brand Vivox, but they have certain differences in functions, performance and price. So when facing these two mobile phones, which one is more worth buying? There are obvious differences in appearance design between Vivox100 and Vivox100Pro

Currently, the potential coins that are favored by the currency circle include SOL coin and BCH coin. SOL is the native token of the Solana blockchain platform. BCH is the token of the BitcoinCash project, which is a fork currency of Bitcoin. Because they have different technical characteristics, application scenarios and development directions, it is difficult for investors to make a choice between the two. I want to analyze which one has more potential, SOL currency or BCH? Invest again. However, the comparison of currencies requires a comprehensive analysis based on the market, development prospects, project strength, etc. Next, the editor will tell you in detail. Which one has more potential, SOL coin or BCH? In comparison, SOL coin has more potential. Determining which one has more potential, SOL coin or BCH, is a complicated issue because it depends on many factors.

Windows 10 vs. Windows 11 performance comparison: Which one is better? With the continuous development and advancement of technology, operating systems are constantly updated and upgraded. As one of the world's largest operating system developers, Microsoft's Windows series of operating systems have always attracted much attention from users. In 2021, Microsoft released the Windows 11 operating system, which triggered widespread discussion and attention. So, what is the difference in performance between Windows 10 and Windows 11? Which

Comparative evaluation of Vivox100 and Vivox100Pro: Which one do you prefer? As smartphones continue to become more popular and more powerful, people's demand for mobile phone accessories is also growing. As an indispensable part of mobile phone accessories, headphones play an important role in people's daily life and work. Among many headphone brands, Vivox100 and Vivox100Pro are two products that have attracted much attention. Today, we will conduct a detailed comparative evaluation of these two headphones to see their advantages and disadvantages

PyCharm is a powerful Python integrated development environment (IDE) that is widely used by Python developers for code writing, debugging and project management. In the actual development process, most developers will face different problems, such as how to improve development efficiency, how to collaborate with team members on development, etc. This article will introduce a practical guide to remote development of PyCharm to help developers better use PyCharm for remote development and improve work efficiency. 1. Preparation work in PyCh

Title: Performance comparison, advantages and disadvantages of Go language and other programming languages. With the continuous development of computer technology, the choice of programming language is becoming more and more critical, among which performance is an important consideration. This article will take the Go language as an example to compare its performance with other common programming languages and analyze their respective advantages and disadvantages. 1. Overview of Go language Go language is an open source programming language developed by Google. It has the characteristics of fast compilation, efficient concurrency, conciseness and easy readability. It is suitable for the development of network services, distributed systems, cloud computing and other fields. Go

StableDiffusion is an open source deep learning model. Its main function is to generate high-quality images through text descriptions, and supports functions such as graph generation, model merging, and model training. The operating interface of the model can be seen in the figure below. How to generate a picture. The following is an introduction to the process of creating a picture of a deer drinking water. When generating a picture, it is divided into prompt words and negative prompt words. When entering the prompt words, you must describe it clearly and try to describe the scene, object, style and color you want in detail. . For example, instead of just saying "the deer drinks water", it says "a creek, next to dense trees, and there are deer drinking water next to the creek". The negative prompt words are in the opposite direction. For example: no buildings, no people , no bridges, no fences, and too vague description may lead to inaccurate results.

Spyder and PyCharm are two very popular Python integrated development environments (IDEs), each with their own advantages and features. Many people get confused when choosing which one to use. This article will compare these two IDEs to help readers understand their advantages and disadvantages and make a choice. SpyderSpyder is a development environment designed specifically for scientific computing. Its main advantage lies in its support for data analysis and scientific computing. Spyder integrates many scientific computing libraries, such as Num
