Use table placeholder on SQLDelete

Hi
Is it possible to use a table placeholder in @SQLDelete annotation ? To move from this :

@SQLDelete(sql = "UPDATE assess_answer SET deleted = true WHERE id = ?", check = ResultCheckStyle.COUNT)
to
@SQLDelete(sql = "UPDATE {table} SET deleted = true WHERE id = ?", check = ResultCheckStyle.COUNT)

Most of our tables are going to have the same SQLDelete and Where content for the annotations, adding this to inheritance to those 2 annotations that would reduce repetition .

That’s not possible. The only placeholder you can use are for schemas and catalog names. You can implement a custom MetadataContributor though and set these custom delete sqls programmatically on PersistentClass