Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
If your table is too large to make a bulk insert pratical, you can always create a view of the temptable that has the extra column, and use the cpyf command to copy the view into your original table.Insert into table
(select column1,null,columna,columnb from temptable)
CREATE VIEW TEMPTABLE_VW ( column1, new_column, columna, columnb )
AS select column1, null, columna, columnb from temptable ;
CPYF FROMFILE(TEMPTABLE_VW) TOFILE(TABLE) MBROPT(*ADD)