Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ssis/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Select OpenEdge选择今天在SSIS中使用_Select_Ssis_Openedge - Fatal编程技术网

Select OpenEdge选择今天在SSIS中使用

Select OpenEdge选择今天在SSIS中使用,select,ssis,openedge,Select,Ssis,Openedge,我在SSIS包中使用此select select order, date_req, date_creat,cust_num, bl_num from pub.orders where date_req > '02/20/2017' and bl_num > 0 order by cust_num, date_req 我有一个到Progress OpenEdge数据库的ODBC连接。 我想将日期文字更改为今天的日期函数 我需要有关编码的帮助。使用curdate()函数 请

我在SSIS包中使用此select

select order, date_req, date_creat,cust_num, bl_num
from pub.orders
where date_req > '02/20/2017'
and     bl_num   > 0
order by cust_num, date_req
我有一个到Progress OpenEdge数据库的ODBC连接。 我想将日期文字更改为今天的日期函数

我需要有关编码的帮助。

使用curdate()函数

请参阅此处的文档:

Curdate()?我在这里猜测,所以我将留下它作为一个评论供您尝试,而不是作为一个答案!从pub.orders中选择order、date_req、date_create、cust_num、bl_num,其中date_req=CURDATE()和bl_num>0 order by cust_num、date_req这非常有效。谢谢。因为这是一个合理的答案(你帮我查过了)。我也把它作为一个答案贴了出来,请随意投票并接受!你就是这么说谢谢的。