SQL Server日期时间转换函数等效于postgresql(关键hawq)



我们在SQL Server 2012中有以下SQL脚本。我们即将在数据库转换中用postgresql(HAWQ 1.3.1)编写类似的脚本

SELECT * 
FROM tablename_1 
LEFT OUTER JOIN
     (SELECT 
          SUM(b.OrderValue) AS OrderValue, b.OrderDate, b.Description 
      FROM 
          (SELECT * 
           FROM tablename_2 rcd
           LEFT JOIN 
                (SELECT Distinct 
                     afv.Item, afv.Description, afd.KeyField
                 FROM tablename_3 afd
                 JOIN tablename_3 afv ON afv.FormType = afd.FormType 
                                      AND afv.FieldName = afd.FieldName 
                                      AND afv.Item = afd.AlphaValue
                 WHERE
                      afd.FormType = 'CUS'
                      AND afd.FieldName = 'COR002') a ON a.KeyField = rcd.Customer 
           WHERE
               OrderDate >= CONVERT(VARCHAR(25),DATEADD(dd,-(DAY(GETDATE())-1),GETDATE()), 101)) b 
    GROUP BY
        b.OrderDate, b.Description) c ON rtr.CorpAcctName = c.Description

我们尝试并编写了以下脚本:

以上脚本编译成postgresql(VERSION HAWQ 1.3.1)

SELECT * from tablename_1  rtr LEFT OUTER JOIN
(SELECT SUM(b."OrderValue") as OrderValue,b."OrderDate", b."Description" from
(SELECT *  from tablename_2 rcd
LEFT JOIN 
( SELECT Distinct afv."Item", afv."Description", afd."KeyField"
FROM tablename_2 afd
  Join tablename_3 afv on afv."FormType" = afd."FormType" and afv."FieldName"=afd."FieldName" and afv."Item"=afd."AlphaValue"
Where   afd."FormType" = 'CUS'and afd."FieldName" = 'COR002') a
ON a."KeyField" =rcd."Customer" where "OrderDate">=TO_CHAR((CURRENT_DATE -(CURRENT_DATE-INTERVAL '1 DAY)) ,'MM-DD-YYYY')) b 
group by b."OrderDate", b."Description") c
on rtr."CorpAcctName"=c."Description"

也尝试使用:

  • 当我们尝试将ms-sql-server转换函数转换为postgres时对于orderdate,orderdate的列比较必须反映为"MM-01-YYYY"(所需结果),实际为"00-01-0000"没有设计。相反,我们正在寻找"2015年1月11日"的结果

**

  • postgresql中的convert()函数表达式用于得到想要的结果

**

我想从我现在的中获得月初一

因此,您需要在当前月份开始后创建的所有内容。

一个简单的

where "OrderDate" >= date_trunc('month', current_date)

会这么做的。

有关date_trunc()方法的详细信息,请参阅手册:
http://www.postgresql.org/docs/current/static/functions-datetime.html


你应该理解你的表达式TO_CHAR((CURRENT_DATE -(CURRENT_DATE-INTERVAL '1 DAY')) ,'MM-DD-YYYY')在做什么,这样你就可以避免将来出现这种错误:

首先:current_date - interval '1 day'date中减去interval,在00:00:00处生成timestamp:"昨天"。

然后你从今天的日期中减去它,所以current_date - timestamp '2015-11-13 00:00:00.0'(如果今天是2015-11-14)。

这产生了interval:0 years 0 mons 1 days 0 hours 0 mins 0.00 secs

然后将该interval传递给to_char()函数,该函数将格式化传递的间隔。由于它只有"1天",没有年份,没有月份,因此对其应用格式字符串'MM-DD-YYYY'的结果确实会产生00-01-0000

然后将这个字符值与实际的date进行比较,这也是您不应该做的事情


你真的应该去掉那些可怕的带引号的标识符。他们的麻烦比他们值得的多得多

相关内容

  • 没有找到相关文章

最新更新