search
HomeDatabaseMysql Tutorialmssql sql语优化实例不使用insert语句(1/2)

mssql sql语优化实例不使用insert语句

/mssql sql语优化实例不使用insert语句
/*

create   table   tb_a    
          (   owner   char(2)   null,        
              skuid   varchar(10)   null,    
              lot   varchar(50)   null,    
              quality   varchar(2)   null,    
              vol   decimal(18,2)   null,
              vol_exchange   decimal(18,2)   null,
              mysort   int
              )    

        create   table   tb_b    
          (   owner   char(2)   null,        
              skuid   varchar(10)   null,    
              lot   varchar(50)   null,    
              quality   varchar(2)   null,    
              vol   decimal(18,2)   null,
              vol_exchange   decimal(18,2)   null,
              mysort   int
              )    

INSERT   INTO   tb_a(owner,skuid,lot,quality,vol,vol_exchange,mysort)
VALUES   ( '78 ', '1000164481 ', '071203 ', '0 ',80.00,70.00,1)
INSERT   INTO   tb_a(owner,skuid,lot,quality,vol,vol_exchange,mysort)
VALUES   ( '78 ', '1000164481 ', '071202 ', '0 ',60.00,0.00,2) 
INSERT   INTO   tb_a(owner,skuid,lot,quality,vol,vol_exchange,mysort)
VALUES   ( '78 ', '1000164481 ', '081203 ', '0 ',30.00,30.00,3)
INSERT   INTO   tb_a(owner,skuid,lot,quality,vol,vol_exchange,mysort)
VALUES   ( '78 ', '1000164481 ', '081202 ', '0 ',20.00,20.00,4)
INSERT   INTO   tb_a(owner,skuid,lot,quality,vol,vol_exchange,mysort)
VALUES   ( '78 ', '1000164481 ', '081201 ', '0 ',10.00,10.00,5)

INSERT   INTO   tb_b(owner,skuid,lot,quality,vol,vol_exchange,mysort)
VALUES   ( '01 ', '1000164479 ', '091201 ', '0 ',18.00,6.00,6)
INSERT   INTO   tb_b(owner,skuid,lot,quality,vol,vol_exchange,mysort)
VALUES   ( '04 ', '1000164481 ', '091201 ', '0 ',20.00,0.00,5)
INSERT   INTO   tb_b(owner,skuid,lot,quality,vol,vol_exchange,mysort)
VALUES   ( '03 ', '1000164479 ', '091201 ', '0 ',26.00,26.00,4)
INSERT   INTO   tb_b(owner,skuid,lot,quality,vol,vol_exchange,mysort)
VALUES   ( '02 ', '1000164479 ', '091201 ', '0 ',28.00,28.00,3)
INSERT   INTO   tb_b(owner,skuid,lot,quality,vol,vol_exchange,mysort)
VALUES   ( '08 ', '1000164481 ', '091201 ', '0 ',60.00,0.00,2)
INSERT   INTO   tb_b(owner,skuid,lot,quality,vol,vol_exchange,mysort)
VALUES   ( '06 ', '1000164481 ', '091201 ', '0 ',80.00,70.00,1)

GO

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
SQL Server使用CROSS APPLY与OUTER APPLY实现连接查询SQL Server使用CROSS APPLY与OUTER APPLY实现连接查询Aug 26, 2022 pm 02:07 PM

本篇文章给大家带来了关于SQL的相关知识,其中主要介绍了SQL Server使用CROSS APPLY与OUTER APPLY实现连接查询的方法,文中通过示例代码介绍的非常详细,下面一起来看一下,希望对大家有帮助。

SQL Server解析/操作Json格式字段数据的方法实例SQL Server解析/操作Json格式字段数据的方法实例Aug 29, 2022 pm 12:00 PM

本篇文章给大家带来了关于SQL server的相关知识,其中主要介绍了SQL SERVER没有自带的解析json函数,需要自建一个函数(表值函数),下面介绍关于SQL Server解析/操作Json格式字段数据的相关资料,希望对大家有帮助。

聊聊优化sql中order By语句的方法聊聊优化sql中order By语句的方法Sep 27, 2022 pm 01:45 PM

如何优化sql中的orderBy语句?下面本篇文章给大家介绍一下优化sql中orderBy语句的方法,具有很好的参考价值,希望对大家有所帮助。

php怎么连接mssql数据库php怎么连接mssql数据库Oct 23, 2023 pm 12:02 PM

php连接mssql数据库的方法有使用PHP的MSSQL扩展、使用PDO等。详细介绍:1、使用PHP的MSSQL扩展方法,确保PHP安装了MSSQL扩展。可以在PHP配置文件(php.ini)中检查是否启用了mssql扩展;2、使用PDO方法,确保PHP安装了PDO扩展。可以在PHP配置文件(php.ini)中检查是否启用了pdo_sqlsrv扩展。

Ubuntu安装PHP并配置MSSQL连接的详细指南Ubuntu安装PHP并配置MSSQL连接的详细指南Feb 29, 2024 am 11:15 AM

Ubuntu是一款流行的开源操作系统,常用于服务器运行。在Ubuntu上安装PHP并配置MSSQL连接是许多开发者和系统管理员经常需要做的操作之一。本文将为读者提供一份详细的指南,步骤包含安装PHP、设置Apache、安装MSSQLServer等内容,并附上具体的代码示例。第一步:安装PHP及相关扩展首先,我们需要安装PHP及其相关扩展,以便支持PHP连接

Monaco Editor如何实现SQL和Java代码提示?Monaco Editor如何实现SQL和Java代码提示?May 07, 2023 pm 10:13 PM

monacoeditor创建//创建和设置值if(!this.monacoEditor){this.monacoEditor=monaco.editor.create(this._node,{value:value||code,language:language,...options});this.monacoEditor.onDidChangeModelContent(e=>{constvalue=this.monacoEditor.getValue();//使value和其值保持一致i

一文搞懂SQL中的开窗函数一文搞懂SQL中的开窗函数Sep 02, 2022 pm 04:55 PM

本篇文章给大家带来了关于SQL server的相关知识,开窗函数也叫分析函数有两类,一类是聚合开窗函数,一类是排序开窗函数,下面这篇文章主要给大家介绍了关于SQL中开窗函数的相关资料,文中通过实例代码介绍的非常详细,需要的朋友可以参考下。

Monaco Editor怎么实现SQL和Java代码提示Monaco Editor怎么实现SQL和Java代码提示May 11, 2023 pm 05:31 PM

monacoeditor创建//创建和设置值if(!this.monacoEditor){this.monacoEditor=monaco.editor.create(this._node,{value:value||code,language:language,...options});this.monacoEditor.onDidChangeModelContent(e=>{constvalue=this.monacoEditor.getValue();//使value和其值保持一致i

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft