0 Hi,
You are using Insert Statement which is mainly used to insert values in table.
In your question you said that you want to create extra columns in your table.
So, use below query instead of Insert.
ALTER TABLE table_name ADD column_name datatype
For more details please check this link :