KB-35543: SQL query returns values only when date/time field is an exact value.

Question:

How can I set up an SQL query to return data whenever a historic field of type date/time has a certain value?
        
Solution:

For a Microsoft SQL Server database, use DATEPART function. In the example below, the Query returns all table’s fields when the data field’s value (in minutes) is equal to 30:

SELECT *
From [TableName]
Where DATEPART(MINUTE, data) = 30

Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Deixe seu Comentário

Seu endereço de e-mail não será publicado. Campos marcados com asterisco são obrigatórios *