本文介绍了日期格式的余量(dd/MM/yyyy)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨!
答:我使用的是日期格式(dd/MM/yyyy),所以以字符串格式存储在数据库中.由于数据库的日期格式为(MM/dd/yyyy),我可以更改为(dd/MM/yyyy).
B.我在SQL查询中使用GetDate(),它需要DateTime格式,所以如何将它用于数据库中存储的Date的字符串格式.

代码是:在此代码中FM_BankAC_Entry.Date是DateTime格式.我需要类似的字符串格式查询.

Hi !
A.I am using Date Format (dd/MM/yyyy) so store in DataBase in String Format.Because DateFormat of Database is (MM/dd/yyyy),can I change into (dd/MM/yyyy).
B.I am using GetDate() in SQL query, it require DateTime format.So how can I use it for string format of Date stored in Database.

Code is : In this Code FM_BankAC_Entry.Date is DateTime Format.I Require similar quiry for String Format.

SELECT     dbo.FM_BankAC_Entry.TransCode,dbo.FM_BankAC_Entry.TDate, dbo.FM_BankAC_Entry.TDetails, dbo.FM_BankAC_Entry.ChequeNo, dbo.FM_BankAC_Entry.AmtWithdr,FM_BankAC_Entry.AmtDep

FROM  FM_BankAC_Entry
where  FM_BankAC_Entry.Date between GETDATE()- @date1 and GETDATE()- @date2
        order by FM_BankAC_Entry.Date desc

推荐答案




这篇关于日期格式的余量(dd/MM/yyyy)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-27 22:56