SQL:根据其他字段信息更新字段

时间:2019-04-23 14:14:38

标签: oracle sql-update

我正在尝试基于一个列数据自动执行UPDATE查询,并将同一字段应用于另一个字段。

查看屏幕截图:

enter image description here

在这种情况下,我正在尝试将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;
}

但是要通过我拥有的批处理作业自动运行。

0 个答案:

没有答案