I have an HSQLDB database in LibreOffice. It has a table name Clients. I just added a new column to the table named Delivery_Days. It is Text [VARCHAR] with a maximum length of 5 and a default value of MTWTF. It is not the key. I want to set it in all of the existing rows to the literal text “MTWTF” (without the quotes).
I attempt to execute the SQL statement UPDATE “Clients” SET “Delivery_Days” = “MTWTF” and get the error 1: Column not found: MTWTF
I have tried various variations of the DQL statement such as with and without the various quotes.
Question 1: What the heck am I doing wrong? How do I make the value MTWTF be taken as a text literal, not the name of a column?
And question 2, is there definitive documentation for HSQLDB SQL somewhere that would answer this question?
Thanks for your patience with an incredibly naive question.
Charles