Is following insert based on select on one of the column possible in MySQL
INSERT INTO student_fees(id, name, fees) VALUES(1, SELECT name from students
try this:
INSERT INTO student_fees(id, name, fees) Select 1, name,'200$' from students