选择并计数

时间:2014-01-09 20:46:49

标签: select count

我有这个问题。

select * 
from contract_detail
where contract=264127 
and StartDate >='2014-01-13';

我想从2014年2月13日起的特定日期选择合同编号为264127的特定合同到264221?

1 个答案:

答案 0 :(得分:0)

尝试

select * from contract_detail where contract >= 264127 and contract <= 264221 and StartDate >='2014-01-13';