SELECT from one table and INSERT the selected data to another table using INSERT & SELECT statementINSERT INTO `students` (`first_name`, `last_name`, `points`)
SELECT first_name, last_name, points * 1.2 FROM students WHERE id = 3The only thing we must consider is column positions (position must be the same)