sql how to compare date code example
Example 1: sql compare data from two tables
select * from tableA
minus
select * from tableB
Example 2: SQL server datetime compare
Pressupondo uma tabela utilizador u.
year(u.DataInicio) --> Retorna o ano
month() --> Retorna o mês
day() --> dia
Exemplo:
u.Ativo = 1 AND year(u.DataInicio)<= 2018