本文介绍了在SQL中显示日期问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

我有两个名为Pur_Mst和Pur_Trans的表,我必须将两个表连接起来才能获取一些数据.
在Pur_Trans表中,有一个名为"ExpDate"的列.该表中只有3个数据.ExpDates如12/06/2015,12/04/2013,05/08/2015.只有1个数据是2013年.虽然有条件查看2015年1月1日到2015年12月31日之间的数据,但显示的是2013年.数据.

下面是我在存储过程中写的任何内容,

选择*
来自Pur_Trans pt INNER JOIN dbo.Pur_Master pm于pm.InvoiceNo = pt.InvoiceNo
其中pt.Expdate在@Expdate和@ Expdate1之间


这是什么错误,我不知道.为什么显示2013年数据不明白.所以请大家帮忙.

在此先感谢...!

Hi there,

I have two table named Pur_Mst and Pur_Trans.I have to join both the tables to get some datas.
In Pur_Trans table there is a column named "ExpDate".There is only 3 data in that table.The ExpDates like,12/06/2015,12/04/2013,05/08/2015.Only 1 data is of 2013 yr.While am giving condition to see data between 01/01/2015 to 12/31/2015,it shows me the 2013 yr. data.

Below am mentioning whatever i have written in store procedure,

select *
from Pur_Trans pt INNER JOIN dbo.Pur_Master pm on pm.InvoiceNo=pt.InvoiceNo
where pt.Expdate between @Expdate and @Expdate1


What is error in this,I donot able to know.why it showing 2013 data donot understand.So plz anybody help me.

Thanks in advance...!

推荐答案



select *
 from Pur_Trans pt INNER JOIN dbo.Pur_Master pm on pm.InvoiceNo=pt.InvoiceNo
 where CONVERT(DATETIME, pt.Expdate) between CONVERT(DATETIME, @Expdate) and CONVERT(DATETIME, @Expdate1)


这篇关于在SQL中显示日期问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 05:57