How can I add a new column to a table? This column located in another table from another database. I also need it as an 'on update cascade'. So far I have no idea how to do it.
This is an example query that adds a new columns top exist table:
ALTER TABLE Orders
ADD descriptions VARCHAR (255);
But this example refers to a hardcoded column.