Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
271 views
in Technique[技术] by (71.8m points)

sql server - Convert DATE to UTCTicks for sql query

In a database query that defines DATE values using ticks format and a WHERE clause that uses regular DateTime format, can query execution automatically convert to ticks format and return the correct results?

For example, as shown in the following sample code, when UTCTicks receives a regular date value as input, it's automatically converted to UTC ticks before the query runs:

where StartUTCTicks > 637212960000000000 and StartUTCTicks < 637345151990000000 
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

query automatically convert that to ticks and brings results from DB

Yes, you can make this happen automatically. The way you do it is by storing the value as a DateTime column in the first place!

Sql Server already stores datetime values in an efficient binary format. It does not store them as strings, unless you were foolish enough to choose a varchar type. Therefore, the only thing you gain by trying to use ticks in Sql Server instead of DateTime values is pain from losing easy access to the built-in DateTime functions and indexing, including automatically treating certain literals in your SQL code as DateTime values.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...