I want to alter a view and add a new column in it. I have:
ALTER VIEW folders_contents AS SELECT files.id, files.name, files.filesize, files.updated, files.deleted, FROM files UNION ALL SELECT folders.id, folders.name, 0 AS filesize, folders.updated, folders.deleted, FROM folders ORDER BY 8, 2 GO The problem is that it shows:
[Err] ERROR: syntax error at or near "AS"
Is the first time I have to do with views, I need some help :)
GOin Postgres. AndALTER VIEWdoes not what you think it does which is clearly documented in the manual