mirror of
https://github.com/pcvolkmer/mv64e-onkostar-data.git
synced 2025-07-03 19:12:55 +00:00
fix: ambiguous column id
This commit is contained in:
@ -31,7 +31,7 @@ public abstract class AbstractDataCatalogue implements DataCatalogue {
|
|||||||
public ResultSet getById(int id) {
|
public ResultSet getById(int id) {
|
||||||
var result = this.jdbcTemplate.query(
|
var result = this.jdbcTemplate.query(
|
||||||
String.format(
|
String.format(
|
||||||
"SELECT * FROM %s JOIN prozedur ON (prozedur.id = %s.id) WHERE geloescht = 0 AND id = ?",
|
"SELECT * FROM %s JOIN prozedur ON (prozedur.id = %s.id) WHERE geloescht = 0 AND prozedur.id = ?",
|
||||||
getTableName(),
|
getTableName(),
|
||||||
getTableName()
|
getTableName()
|
||||||
),
|
),
|
||||||
|
Reference in New Issue
Block a user