This is my MySQL table feedback.

I want to calculate average of every column and store the result to table average as below structure using a PHP file.

I am using query SELECT AVG (waiting) FROM feedback to calculate average of waiting column. But I do not have any idea of how to put this query result to another table as the above structure.
When using query INSERT INTO average (average) SELECT AVG (waiting) FROM feedback **it only updating the average column.
Please help me with a sample code.
Thanks