我有下表。
正如您所看到的,有一些重复的school_id。 id字段是自动递增的,所以为了得到最新的,我需要获得每个school_id具有最高id的行。
使用原始sql,查询就像这样,
<Paper style={{padding: 15, marginRight: 19}}>
<Stepper activeStep={stepIndex} orientation="vertical">
<Step>
<StepLabel>Personnel Info</StepLabel>
<StepContent>
<PersonalInfo ref="personalInfo"/>
{this.renderStepActions()}
</StepContent>
</Step>
.
.
.
</Stepper>
</Paper>
我需要的结果如下:
P.S我将此作为searchModel传递