mirror of
https://github.com/pcvolkmer/mv64e-onkostar-data.git
synced 2025-07-04 03:22:53 +00:00
fix: change column name to 'hauptprozedur_id'
This commit is contained in:
@ -28,7 +28,7 @@ public abstract class AbstractSubformDataCatalogue extends AbstractDataCatalogue
|
|||||||
*/
|
*/
|
||||||
public List<ResultSet> getAllByMainId(int id) {
|
public List<ResultSet> getAllByMainId(int id) {
|
||||||
var result = this.jdbcTemplate.query(
|
var result = this.jdbcTemplate.query(
|
||||||
String.format("SELECT * FROM %s JOIN prozedur ON (prozedur.id = %s.id) WHERE hauptprozedur = ?", getTableName(), getTableName()),
|
String.format("SELECT * FROM %s JOIN prozedur ON (prozedur.id = %s.id) WHERE hauptprozedur_id = ?", getTableName(), getTableName()),
|
||||||
(resultSet, i) -> resultSet,
|
(resultSet, i) -> resultSet,
|
||||||
id);
|
id);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user