Change the name of a table in the H2 Database Engine

1

I'm trying to change the name of a table in H2, but I can not find the syntax.

Does anyone know?

    
asked by anonymous 13.02.2018 / 13:15

1 answer

1

I discovered the syntax:

Example:

 ALTER TABLE TEST RENAME TO MY_DATA

Reference: H2 Database Engine Grammar Handbook: Available at: link

    
13.02.2018 / 13:23