我有这个问题。
select *
from contract_detail
where contract=264127
and StartDate >='2014-01-13';
我想从2014年2月13日起的特定日期选择合同编号为264127的特定合同到264221?
答案 0 :(得分:0)
尝试
select * from contract_detail where contract >= 264127 and contract <= 264221 and StartDate >='2014-01-13';