B
bravercaohao
Unregistered / Unconfirmed
GUEST, unregistred user!
要求列出person表中per_dob(出生年月日字段)距当天15天内(含当天)所有记录:
Select per_name,Per_Dob From person
Where ((month(Per_Dob)=month(getdate())) and (day(Per_Dob)-day(getdate())) between 0 and 15)
or ((month(Per_Dob-15)=month(getdate())) and (day(Per_Dob-15)-day(getdate())) between -15 and 0)
发现此句子有错,请举出实例.
Select per_name,Per_Dob From person
Where ((month(Per_Dob)=month(getdate())) and (day(Per_Dob)-day(getdate())) between 0 and 15)
or ((month(Per_Dob-15)=month(getdate())) and (day(Per_Dob-15)-day(getdate())) between -15 and 0)
发现此句子有错,请举出实例.