I need to alter a column of a table, containing data allready, from varchar(4) to varchar(6), because I need to store longer strings than I expected. The new table should contain all the data as the old one and should have the same name as the old one.
How can I copy the structure and the data of a table?
I also need to add a column to a table filled with data. This will probably be done the same way?
How can I copy the structure and the data of a table?
I also need to add a column to a table filled with data. This will probably be done the same way?