Write a select statement pulling back the metadata to do most of the work for you and execute it in QA:
SELECT COLUMN_NAME + '1,
' FROM INFORMATION_SCHEMA.Columns
WHERE TABLE_NAME = '<Your table name>'
ORDER BY ORDINAL_POSITION
Copy the resulting output and add on your CREATE VIEW and FROM statements and you have your DDL query to create the view.
K. Brian Kelley
@kbriankelley