The following SQL will not accepted by HSQLDB because of the name ‘position’ is a keyword.
CREATE MEMORY TABLE bb (position bigint)
How to create this table without changing the column name?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t know HSQLDB, but some SQLs let you use special quotes to force them to accept reserved identifiers.
I’d suggest trying first single quotes, then backticks. If that doesn’t work, someone else will hopefully have posted something that does! 🙂