我真的无法理解。
代码-
select *
from Bill_Detail
where DateTimeofBilling > '8/18/2013 12:00:00 PM'
and DateTimeofBilling < '8/20/2013 12:00:00 AM'
伪代码-
select all
from Bill_Detail
where DateTimeofBilling greater than 8/18/2013
and DateTimeofBilling less than 8/20/2013
我需要从日期 8/18/2013 到 8/20/2013 获取行,但代码没有返回任何内容。
我认为这足以解释这一点。谁能帮忙?