I'm trying to create a view on H2SQL, but i cannot find the correct syntax.
I'm using:
CREATE VIEW dbo.Log
AS
SELECT * FROM dbo.MyTable
And i receive the error:
Caused by: org.h2.jdbc.JdbcSQLException: Syntax error in SQL statement "CREATE VIEW DBO.LOG "; expected "COMMENT, (, AS";
What is the right syntax?