> I am using H2 database version 1.1.18 (I cannot upgrade to latest
> version).
Usually I would say "why not?" but here it wouldn't help.
> I am trying to drop an unnamed constraint on one of the tables using
> following query
> ALTER TABLE T_USER DROP CONSTRAINT (
> SELECT constraint_name FROM information_schema.constraints WHERE
> table_name = 'T_USER' AND column_list = 'NAME'
> );
Identifiers can't be formulas, the same as in other programming languages.
Regards,
Thomas