在sql中对于bit类型的赋值,正常情况下我们会使用下面的语句进行更新:

update FinancialPeriodForecastOpportunity 
set IsIncluded=true/false 
where FactOpportunityId='OPP-0003062960'

今天学到了新的技能:

update FinancialPeriodForecastOpportunity 
setIsIncluded=~IsIncluded 
where FactOpportunityId='OPP-0003062960'