Home > php教程 > PHP开发 > body text

SQL statement splicing in SQL stored procedures

高洛峰
Release: 2016-12-14 15:22:59
Original
1645 people have browsed it

set ANSI_NULLS ON

set QUOTED_IDENTIFIER ON

go

-- ================================== ===========

-- Author:wgh

-- Create date: 2012-06-07

-- Description: IP access pre-statistics

-- ====== =======================================

CREATE PROCEDURE [dbo].[PROC_HB_PreStatByIP]

@BeginTime varchar(50),

@EndTime varchar(50),

@TimeType int, --0 represents hours, 1 represents days

@ChannelID varchar(10)='0',

@I pAddress varchar(20)

AS

BEGIN

declare @sql1 nvarchar(2000)

IF @TimeType = 0

BEGIN

SET @sql1='SELECT CONVERT(varchar(13),AddTime ,120) AS ' 'Date''

,ChannelID AS ''Promotion channel''

,IPAddress AS ''IP address''

,ViewCount AS ''Number of views''

​​​​​​​,ClickCount AS ''Number of clicks''

FROM dbo.HB_AdPreStatIP WHERE AddTime>='''+@BeginTime+''' AND AddTime<='''+@EndTIme+'''

                                                                                                                                               sql1 =@sql1 + ' AND ChannelID='''+@ChannelID+''''

                                                                                                                 1 +' AND IPAddress=' ''+@IpAddress+''''

    END

      SET @sql1 =@sql1+' ORDER BY ViewCount DESC' END

                           'SELECT CONVERT(varchar(10), AddTime,120) AS ''Date''

,ChannelID AS ''Promotion channel''

,IPAddress AS ''IP address''

,              , SUM(ViewCount) AS                                                                                                                                                                                 , SUM (ViewCount) (ClickCount) AS ''Number of clicks''

                                                                                  ‐ ‐ ‐ ‐ ‑ ‑ ‐ ‐ dbo.HB_AdPreStatIP WHERE ​'0'

                                                                                                                                                         

                                                                                                                                                                                                                                                                                                      sql1 =@sql1 +' AND IPAddress='''+@IpAddress+''''

    END

SET @sql1 =@sql1 + 'GROUP BY CONVERT(varchar(10),AddTime,120),ChannelID,IPAddress ORDER BY SUM(ViewCount) DESC'

END

EXEC sp_executesql @sql1

END

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!