I need to add a column to the view but I cannot find the right way to this. Please provide me with a proper syntax. I need to add the column "NextFeeDate" from table "T_atmcardparam" to the "atmcardparam".
ALTER VIEW view_name
("column 1", "col 2", "col3", "col4")
SELECT ("col5", "col6", "col7", "col8")
FROM table_name
I found this syntax online but don't know how to implement it.