I get an error:
Subqueries are not allowed in this context. Only scalar expressions are allowed.
Why are subqueries not allowed? I'm just trying to move some value over to another row in the same database. Is there another way of expression this quickly? (it's just a one-time operation...)
INSERT INTO
Html_Content (pageid, html_content)
VALUES
(20, (SELECT page_text FROM pages WHERE pageid = 29))