CString SQL1 = "select top 1 * from employees order by [石灰加入量/kg] desc";;
m_Ado.m_pRecordset = m_Ado.OpenRecordset(SQL1);//打開記錄集
while(!m_Ado.m_pRecordset->adoEOF)
{
var=m_Ado.m_pRecordset->GetCollect("石灰加入量/kg");//
if (var.vt!=NULL)
m_t19=(LPCSTR)_bstr_t(var);
m_Ado.m_pRecordset->MoveNext();//將記錄集指針移動到下一條記錄
}
我這些程序只能找出【石灰加入量/kg 】 這個字段下所有數據的最大值,請問我想通過編輯框輸入一個范圍,然後查找在這個范圍下【石灰加入量/kg 】的最值,怎麼寫呢 ???望高手指點,謝謝
select top 1 * from employees where [石灰加入量/kg] > xxx and [石灰加入量/kg] < xxx order by [石灰加入量/kg] desc