Answers for "sql how to compare date"

SQL
1

sql compare data from two tables

select * from tableA
minus
select * from tableB
Posted by: Guest on September-27-2020
0

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
Posted by: Guest on October-20-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language