SELECT COM DATAS
Modificando um pouco as querys apresentadas pelos colegas
SELECT d.Nome, d.DataNasc, m.Descricao FROM tabela1 AS d
INNER JOIN tabela2 AS m ON m.Cod=d.Cod
WHERE ((Month(d.DataNasc) = 08) AND (Day(d.DataNasc) >= 5))
[txt-color=#e80000]OR[/txt-color] ((Month(d.DataNasc) = 09) AND (Day(d.DataNasc) <= 2))
Muito Obrigada FFCOUTO deu certo dessa maneira, mas eu fiz algumas modificações
Select d.Nome, d.DataNasc, m.Descricao
from tabela1 as d inner join tabela2 as m
on m.Cod=d.Cod
where ((Month(d.DataNasc)=08) and (Day(d.DataNasc)>=05)) or
((Month(d.DataNasc)<=09) and (Day(d.DataNasc)<=02))
Até mais
Select d.Nome, d.DataNasc, m.Descricao
from tabela1 as d inner join tabela2 as m
on m.Cod=d.Cod
where ((Month(d.DataNasc)=08) and (Day(d.DataNasc)>=05)) or
((Month(d.DataNasc)<=09) and (Day(d.DataNasc)<=02))
Até mais
Tópico encerrado , respostas não são mais permitidas