我正在尝试基于一个列数据自动执行UPDATE查询,并将同一字段应用于另一个字段。
查看屏幕截图:
在这种情况下,我正在尝试将PCODE从0值更新为SI_PCODE中显示的值。这将需要通过SALES_QUOTE_ID的唯一变量进行更新。我目前使用excel使用
@GetMapping(path = "/generateReport", produces = "text/csv")
public ResponseEntity<?> generateReport() throws Exception {
String csvString = reportService.generateReport();
ResponseEntity<String> responseEntity = new ResponseEntity<String>(csvString, HttpStatus.OK);
return responseEntity;
}
但是要通过我拥有的批处理作业自动运行。